batch-example/.gitea/workflows/pr-closed.yml

14 lines
351 B
YAML
Raw Normal View History

2023-10-22 02:56:12 +00:00
name: build-develop-branch
run-name: ${{ github.actor }} is learning GitHub Actions
on:
pull_request:
types:
- closed
jobs:
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- run: |
2023-10-22 14:57:24 +00:00
echo The PR was merged into ${{ github.event.pull_request.base }} from ${{ github.ref_name }}