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
5 changes: 2 additions & 3 deletions .github/workflows/auto_assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ on:
pull_request:
types: [opened, ready_for_review]

permissions:
pull-requests: write

jobs:
add-reviews:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: kentaro-m/auto-assign-action@v2.0.1
5 changes: 2 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
- 'unicorn_web/**'

permissions:
id-token: write
contents: read

jobs:
Expand All @@ -37,7 +36,7 @@ jobs:

- run: echo "**** Setup Python ****"
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- run: python --version
Expand All @@ -54,7 +53,7 @@ jobs:
- run: 'echo "NodeJS version: $(node --version)"'

- run: echo "**** Setup pnpm ****"
- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v4.2.0
with:
version: 10
- run: 'echo "pnpm version: $(pnpm --version)"'
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/label_pr_on_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
types:
- completed

permissions:
pull-requests: write

jobs:
get_pr_details:
# Guardrails to only ever run if PR recording workflow was indeed
Expand All @@ -23,6 +20,8 @@ jobs:
label_pr:
needs: get_pr_details
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/on_merged_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
types:
- completed

permissions:
issues: write

jobs:
get_pr_details:
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
Expand All @@ -22,6 +19,8 @@ jobs:
needs: get_pr_details
runs-on: ubuntu-latest
if: needs.get_pr_details.outputs.prIsMerged == 'true'
permissions:
issues: write
steps:
- uses: actions/checkout@v6
- name: "Label PR related issue for release"
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/on_opened_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
types:
- completed

permissions:
pull-requests: write

jobs:
get_pr_details:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
Expand All @@ -21,6 +18,8 @@ jobs:
check_related_issue:
needs: get_pr_details
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v6
- name: "Ensure related issue is present"
Expand All @@ -38,6 +37,8 @@ jobs:
check_acknowledge_section:
needs: get_pr_details
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v6
- name: "Ensure acknowledgement section is present"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"typescript-eslint": "^8.53.1"
"prettier": "^3.8.1",
"typescript-eslint": "^8.55.0"
}
}
Loading