Skip to content
Open
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
33 changes: 18 additions & 15 deletions .github/workflows/aggregate-on-push.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: aggregate-on-push

on:
push:
branches:
- main

jobs:
aggregate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/aggregate-on-push
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
name: aggregate-on-push

on:
push:
branches:
- main

permissions:
contents: read

jobs:
aggregate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/aggregate-on-push
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
3 changes: 3 additions & 0 deletions .github/workflows/on_pr.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Submission PR Review
on: pull_request
permissions:
contents: read

jobs:
verify:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/validate-all-prs-on-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: validate-all-prs-on-trigger
on:
workflow_dispatch

permissions:
contents: read

jobs:
validate:
runs-on: ubuntu-latest
Expand Down