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/call-contributor-issue-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
issue_comment:
types: [created]

permissions:
contents: read

jobs:
call-workflow:
uses: learningequality/.github/.github/workflows/contributor-issue-comment.yml@main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/call-contributor-pr-reply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Send reply on a new contributor pull request
on:
pull_request_target:
types: [opened]

permissions:
contents: read

jobs:
call-workflow:
name: Call shared workflow
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/call-manage-issue-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
issues:
types: [opened, reopened, labeled, unlabeled]

permissions:
contents: read

jobs:
call-workflow:
name: Call shared workflow
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/call-pull-request-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Handle pull request events
on:
pull_request_target:
types: [opened, review_requested, labeled]

permissions:
contents: read

jobs:
call-workflow:
name: Call shared workflow
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/call-update-pr-spreadsheet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request_target:
types: [assigned, unassigned, opened, closed, reopened, edited, review_requested, review_request_removed]

permissions:
contents: read

jobs:
call-workflow:
name: Call shared workflow
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/community-contribution-labeling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
issues:
types: [assigned, unassigned]

permissions:
contents: read

jobs:
call-label-action:
uses: learningequality/.github/.github/workflows/community-contribution-label.yml@main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/containerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- 'v*'
pull_request:

permissions:
contents: read
packages: write

jobs:
pre_postgres:
name: Path match check - postgres
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- master
pull_request:

permissions:
contents: read
actions: read

jobs:
pre_job:
name: Path match check
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/frontendtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- master
pull_request:

permissions:
contents: read
actions: read

jobs:
pre_job:
name: Path match check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/i18n-download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Download translations from Crowdin
on:
workflow_dispatch:

permissions:
contents: read

jobs:
download:
name: Download translations and update files
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/i18n-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Upload translations to Crowdin
on:
workflow_dispatch:

permissions:
contents: read

jobs:
upload:
name: Extract and upload strings to Crowdin
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- hotfixes
- master

permissions:
contents: read

jobs:
pre_job:
name: Path match check
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- master
pull_request:

permissions:
contents: read
actions: read

jobs:
pre_job:
name: Path match check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unassign-inactive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- cron: "1 0 * * 1" # Every Monday at 00:01 UTC
workflow_dispatch:

permissions:
contents: read

jobs:
unassign-inactive:
uses: learningequality/.github/.github/workflows/unassign-inactive-issues.yaml@main
Expand Down
Loading