Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/buildmgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ jobs:
((github.event.schedule != '') && (!github.event.repository.private))
runs-on: ubuntu-22.04
timeout-minutes: 5
permissions:
contents: write
steps:
- name: Harden Runner
if: ${{ !github.event.repository.private }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: '0 0 * * *'

permissions:
contents: read
contents: write

jobs:
buildmgr:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/packchk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,15 +329,14 @@ jobs:
if-no-files-found: error

release:
permissions:
contents: write
if: |
github.event_name == 'release' &&
startsWith(github.ref, 'refs/tags/tools/packchk/')
needs: [ build, test, coverage ]
runs-on: ubuntu-22.04
timeout-minutes: 15

permissions:
contents: write
steps:
- name: Checkout devtools
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/svdconv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ jobs:
needs: [ build, test, coverage ]
runs-on: ubuntu-22.04
timeout-minutes: 15

permissions:
contents: write
steps:
- name: Checkout devtools
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/unit_test_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ on:
types:
- completed

permissions:
contents: read

jobs:
publish-test-results:
name: Publish Test Results
runs-on: ubuntu-22.04
if: github.event.workflow_run.conclusion != 'skipped'

steps:
- name: Harden Runner
if: ${{ !github.event.repository.private }}
Expand Down
Loading