21 lines
704 B
YAML
21 lines
704 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:
|
|
- name: on-merge
|
|
run: |
|
|
echo The PR was merged into ${{ github.event.pull_request.base.ref }} from ${{ github.ref_name }} from ${{ github.ref }} type ${{ github.ref_type }}
|
|
echo head ref : ${{ github.event.pull_request.head.ref }}
|
|
echo base_ref : ${{ github.base_ref }}
|
|
echo head_ref : ${{ github.head_ref }}
|
|
echo env: ${{ env.GITHUB_HEAD_REF }}
|
|
echo env: ${{ env.GITHUB_BASE_REF }}
|
|
|