11.stylix/.github/workflows/conflicts.yml
dependabot[bot] af924c3d4d
ci: bump actions/create-github-app-token from 2 to 3 (#2241)
Link: https://github.com/nix-community/stylix/pull/2241

Reviewed-by: NAHO <trueNAHO@users.noreply.github.com>
2026-03-18 00:28:18 +01:00

30 lines
681 B
YAML

---
name: Label Merge Conflicts
on:
push:
branches:
- master
- release-**
defaults:
run:
shell: bash
jobs:
conflicts:
runs-on: ubuntu-24.04
if: vars.APP_ID
steps:
- uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
permission-contents: read
permission-pull-requests: write
- uses: prince-chrismc/label-merge-conflicts-action@v3
with:
github_token: ${{ steps.app-token.outputs.token }}
conflict_label_name: "status: merge conflict"
conflict_comment: ""