Skip to content

Create testWebhook

Create testWebhook #1

name: Manually publish container image using the last commit SHA as image tag
on:
workflow_dispatch: # run manually
pull_request: # run on pull requests
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Print the pr last commit SHA
run: echo "The commit SHA is ${{ github.event.pull_request.head.sha }}"