Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/authors-and-third-party-notices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Update Authors and Third Party Notices
on:
# Once a week or on pushes to main
schedule:
- cron: "0 3 * * 0"
- cron: '0 3 * * 0'
push:
branches:
- main
Expand Down Expand Up @@ -32,13 +32,13 @@ jobs:

# this is important so git log can pick up on
# the whole history to generate the list of AUTHORS
fetch-depth: "0"
fetch-depth: '0'
token: ${{ steps.app-token.outputs.token }}

- uses: actions/setup-node@v4
with:
node-version: 20.16.0
cache: "npm"
cache: 'npm'

- name: Install [email protected]
run: |
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
npm run update-tracking-plan
git add docs/tracking-plan.md

- name: Commit and push
run: |
git commit --no-allow-empty -m "chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary" || true
git push
# - name: Commit and push
# run: |
# git commit --no-allow-empty -m "chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary" || true
# git push
Loading