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
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ on: # Build any PRs and main branch changes
schedule:
- cron: '0 0 1 * *' # Every month

permissions:
contents: read

concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'yoanm/symfony-jsonrpc-http-server'
steps:
- name: Dependabot metadata
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverage-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
workflows: ["CI"]
types: [completed]

permissions:
contents: read
checks: write # For the check run creation !

jobs:
upload:
name: Upload
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
workflows: ["CI"]
types: [completed]

permissions:
contents: read
checks: write # For the check run creation !

jobs:
nightly:
name: Nightly
tests:
name: Tests
permissions:
contents: read
checks: write # For the check run creation !
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pre-check-CI-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ on:
- '.github/workflows/reusable-nightly-tests-workflow.yml'
- '.github/workflows/auto-merge-dependabot.yml'


permissions:
contents: read
checks: write # For the check run creation !

concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-nightly-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: 'Check run ○'
uses: yoanm/temp-reports-group-workspace/utils/attach-check-run-to-triggering-workflow@v0
with:
name: 'Fetch supported versions'
name: 'Nightly / Fetch supported versions'
fails-on-triggering-workflow-failure: true

- name: Fetch PHP supported versions
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: 'Check run ○'
uses: yoanm/temp-reports-group-workspace/utils/attach-check-run-to-triggering-workflow@v0
with:
name: ${{ matrix.job-name }}
name: 'Nightly / ${{ matrix.job-name }}'
fails-on-triggering-workflow-failure: true

- name: Check out code
Expand Down
Loading