mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-22 23:08:03 +00:00
16 lines
448 B
YAML
16 lines
448 B
YAML
name: PR
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
auto-approve:
|
|
if: "! startsWith(github.event.head_commit.message, '[CI Skip]') && (!github.event.pull_request || github.event.pull_request.head.repo.full_name == github.repository)"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: jacogr/action-approve@master
|
|
with:
|
|
authors: jacogr
|
|
labels: automerge
|
|
token: ${{ secrets.GH_PAT_BOT }}
|