This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
chore(gha): comment on PR about reviews #1
Workflow file for this run
This file contains 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: Notion Migration | |
on: | |
# pull_request: | |
# types: [opened] | |
push: | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: ":warning: As we're migrating to Notion, we want to make sure that changes to the handbook are only absolutely necessary. To ensure it'is the case, it's now mandatory to get an approving review to merge a pull request." | |
}) |