Florian reimold patch 8 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Display merged commits | |
on: | |
pull_request: | |
branches: | |
- master | |
types: ["closed"] | |
jobs: | |
display-commits: | |
runs-on: ubuntu-latest | |
name: Display commits this PR has created | |
if: ${{ github.event.pull_request.merged == true }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: display merge commit sha | |
run: echo "The merge commit sha is ${{ github.event.pull_request.merge_commit_sha }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |