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
4 changes: 3 additions & 1 deletion .github/workflows/apply-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
lint:
if: github.repository_owner == 'TYPO3-documentation'
runs-on: ubuntu-latest
permissions:
contents: write # needed to push commit
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -62,7 +64,7 @@ jobs:

- name: Open Pull Request
if: env.FIX_NEEDED == 'true' && env.EXISTING_PR != 'true'
uses: repo-sync/pull-request@v2
uses: repo-sync/pull-request@7e79a9f5dc3ad0ce53138f01df2fad14a04831c5
with:
source_branch: ${{ env.branch_name }}
destination_branch: ${{ github.ref_name }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ jobs:
backport:
runs-on: ubuntu-latest
name: Backport
permissions:
contents: write # needed to push the backport branch
pull-requests: write # needed to open the PR
steps:
- name: Backport
uses: m-kuhn/backport@v1.2.6
uses: m-kuhn/backport@30b6e83906cc97bad3a02867181d6236becf68f9
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Loading