Skip to content

[Pull Request] Daily merge (try to fix CI problem) #15

[Pull Request] Daily merge (try to fix CI problem)

[Pull Request] Daily merge (try to fix CI problem) #15

Workflow file for this run

name: "Pull Request Labeler"
on:
pull_request:
types:
- closed
jobs:
pr-merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["merged"]
})