fix(database): knex propagate create errors (#7155) #946
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Merge Conflict Labeler | |
| # pull_request_target is safe here because: | |
| # 1. Only uses a pinned trusted action (by SHA) | |
| # 2. Has minimal permissions (contents: read, pull-requests: write) | |
| # 3. Doesn't checkout or execute any untrusted code from PRs | |
| # 4. Only adds/removes labels based on merge conflict status | |
| on: # zizmor: ignore[dangerous-triggers] | |
| push: | |
| branches: | |
| - master | |
| pull_request_target: | |
| branches: | |
| - master | |
| types: [synchronize] | |
| jobs: | |
| label: | |
| name: Labeling | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository == 'louislam/uptime-kuma' }} | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Apply label | |
| uses: eps1lon/actions-label-merge-conflict@1df065ebe6e3310545d4f4c4e862e43bdca146f0 # v3.0.3 | |
| with: | |
| dirtyLabel: "needs:resolve-merge-conflict" | |
| repoToken: "${{ secrets.GITHUB_TOKEN }}" |