Skip to content

Commit

Permalink
ci: request-ciラベルが必要なことを明示するように
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 committed Nov 16, 2023
1 parent 150c10c commit 3264fc2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,33 @@ jobs:
git status
git diff --exit-code || (echo "Git status is not clean." && exit 1)
comment:
name: Comment
runs-on: ubuntu-latest

if: ${{
github.event_name == 'pull_request_target' &&
github.event.action == 'opened' &&
github.event.pull_request.head.repo.fork == true
}}

steps:
- name: Create PR comment
run: |
cat << EOF > comment.md
# ⚠️ CIの実行には \`🚀request-ci\` ラベルが必要です
このリポジトリはフォークされたリポジトリです。
セキュリティ上の理由から、フォークされたリポジトリからのCI実行は自動的に行われません。
CI実行をリクエストするには、このプルリクエストに \`🚀request-ci\` ラベルを追加してください。
(ラベルを追加できるのは一部のメンバーのみです)
EOF
gh pr comment ${{ github.event.number }} -R ${{ github.repository }} -F comment.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

finished-node-ci:
name: Check finished Node CI
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3264fc2

Please sign in to comment.