14 lines
280 B
YAML
14 lines
280 B
YAML
|
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: |
|
||
|
echo The PR was merged
|