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
1 change: 1 addition & 0 deletions .github/sync-with-template-delete.list
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.github/workflows/auto-assign-issue.yml
.github/workflows/codespell.yml
.github/workflows/rebase-dependabot-pull-requests.yml
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- main
pull_request: { }

permissions:
id-token: write

defaults:
run:
shell: bash
Expand All @@ -23,10 +26,18 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Get GitHub Token
id: get-token
uses: remal/github-repository-token-issuer@v1
with:
scopes: |
contents: write
workflows: write

- name: Checkout repository
uses: actions/checkout@v6
with:
token: ${{secrets.PUSH_BACK_TOKEN}}
token: ${{steps.get-token.outputs.token}}
submodules: recursive
lfs: true
fetch-depth: 1
Expand Down
43 changes: 0 additions & 43 deletions .github/workflows/rebase-dependabot-pull-requests.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .mergify/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pull_request_rules:

- name: Sync with template
conditions:
- 'author=remal'
- 'author~=^(remal|repository-token-issuer\[bot\])$'
- 'label=sync-with-template'
- '#added-files=0'
- '#removed-files=0'
Expand Down