Files
metrics/.github/workflows/branches.yml
2022-01-27 01:06:36 -05:00

33 lines
1.1 KiB
YAML

name: Check automated branches
on:
pull_request_target:
branches:
- main
- latest
- examples
jobs:
notice:
name: Notice for automated branches
runs-on: ubuntu-latest
steps:
- name: Comment on pull request
uses: actions/github-script@v5
with:
script: |
const {issue:{number:issue_number}, repo:{owner, repo}} = context
github.rest.issues.createComment({issue_number, owner, repo, body:[
"Hello there 👋!",
"",
"It seems you have opened a pull request on either `main`, `latest` or `examples`.",
"These branches are fully-automated and do not accept human contributions.",
"",
"* To contribute to *metrics* code, open a pull request to `master` branch",
"* To contribute to *metrics* presets, open a pull request to `presets` branch",
"",
"Thanks for your cooperation 🦾!"
].join("\n")})
- name: Change base branch
run: exit 1