chore(ci): allow for more numbers in tickets (#6453) #3204
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Authors and Third Party Notices | |
on: | |
# Once a week or on pushes to main | |
schedule: | |
- cron: "0 3 * * 0" | |
push: | |
branches: | |
- main | |
jobs: | |
update_generated_files: | |
name: Update automatically generated files | |
runs-on: ubuntu-latest | |
env: | |
HADRON_DISTRIBUTION: compass | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# don't checkout a detatched HEAD | |
ref: ${{ github.head_ref }} | |
# this is important so git log can pick up on | |
# the whole history to generate the list of AUTHORS | |
fetch-depth: '0' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.16.0 | |
cache: 'npm' | |
- name: Install [email protected] | |
run: | | |
npm install -g [email protected] | |
- name: Install Dependencies | |
run: | | |
npm -v | |
npm run bootstrap-ci | |
- name: Update AUTHORS | |
run: npm run update-authors | |
- name: Update THIRD-PARTY-NOTICES.md | |
run: npm run update-third-party-notices | |
- name: Update Security Test Summary | |
run: | | |
npm run update-security-test-summary | |
- name: Update tracking-plan.md | |
run: npm run update-tracking-plan | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: Update report | |
branch: ci/update-3rd-party-notices-and-authors | |
title: 'chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary' | |
add-paths: | | |
THIRD-PARTY-NOTICES.md | |
AUTHORS | |
docs/security-test-summary.md | |
docs/tracking-plan.md | |
body: | | |
- Update `AUTHORS`, `THIRD-PARTY-NOTICES`, docs/tracking-plan.md and `docs/security-test-summary.md` | |
- name: Merge PR | |
env: | |
PULL_REQUEST_NUMBER: ${{steps.cpr.outputs.pull-request-number}} | |
# NOTE: we don't use a PAT so to not trigger further automation | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr merge $PULL_REQUEST_NUMBER --squash --delete-branch | |
gh workflow run codeql.yml -r main |