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
6 changes: 6 additions & 0 deletions .github/workflows/auto_tagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- master

permissions:
contents: read

jobs:
find_changes:
name: "Find changed directories that need tagging"
Expand All @@ -29,6 +32,9 @@ jobs:
runs-on: ubuntu-22.04
needs: find_changes
if: needs.find_changes.outputs.matrix_empty == 'false'
permissions:
contents: write
pull-requests: read
strategy:
fail-fast: false
matrix:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/compare-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- "compare-changes/**/*"
- "!compare-changes/README.md"

permissions:
contents: read

jobs:
test:
name: Test
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/find-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- "find-changes/**/*"
- "!find-changes/README.md"

permissions:
contents: read

jobs:
example:
name: Example
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_calculate_incremental_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
paths:
- calculate-incremental-tag/**

permissions:
contents: read

jobs:
test:
name: calculate-incremental-tag
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_setup_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- setup-ruby/**
- _testing/setup-ruby/**

permissions:
contents: read

jobs:
test:
name: setup-ruby ${{ matrix.os }}/${{ matrix.version }}
Expand Down