28 lines
635 B
YAML
28 lines
635 B
YAML
name: target
|
|
on:
|
|
pull_request_review:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: json
|
|
run: echo $JSON
|
|
env:
|
|
JSON: ${{ toJSON(github) }}
|
|
- uses: RouxAntoine/checkout@v3.5.4
|
|
with:
|
|
fetch-depth: '1'
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20'
|
|
- uses: sigyl-actions/gitea-request-review@v0.0.1
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
pr: ${{ github.event.number }}
|
|
teams: reviewers,reviewers-2
|
|
- name: json
|
|
run: echo $JSON
|
|
env:
|
|
JSON: ${{ toJSON(github) }}
|