mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* remove comment based label removal * ci: add functionality for programmatic add/remove needs-signed-commits label * add new line to pull-request-opened-synchronized
36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
name: Pull Request Opened/Synchronized
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-signed-commits:
|
|
name: Check signed commits in PR
|
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'needs-signed-commits')}}
|
|
runs-on: ubuntu-slim
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- name: Check signed commits in PR
|
|
uses: 1Password/check-signed-commits-action@ed2885f3ed2577a4f5d3c3fe895432a557d23d52 # v1
|
|
with:
|
|
comment: |
|
|
⚠️ This PR contains unsigned commits. This repository enforces [commit signatures](https://docs.github.com/en/authentication/managing-commit-signature-verification)
|
|
for all incoming PRs. To get your PR merged, please sign those commits
|
|
(`git rebase --exec 'git commit -S --amend --no-edit -n' @{upstream}`) and force push them to this branch
|
|
(`git push --force-with-lease`)
|
|
|
|
For more information on signing commits, see GitHub's documentation on [Telling Git about your signing key](https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key).
|
|
|
|
- name: Add needs-signed-commits label
|
|
if: ${{ failure() }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
run: |
|
|
gh pr edit $PR_URL --add-label needs-signed-commits
|