Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

test #13

Closed
wants to merge 1 commit into from
Closed

test #13

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/test2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: APPROVE

on: pull_request # run on pull request events

permissions:
pull-requests: write # grant write permission on the pull-requests endpoint
jobs:
approve:
runs-on: ubuntu-latest

steps:
- run: | # approve the pull request
curl --request POST \
--url https://api.github.com/repos/${{github.repository}}/pulls/${{github.event.number}}/reviews \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
-d '{"event":"APPROVE"}'
Loading