Skip to content

Feat/test branch 4

Feat/test branch 4 #75

Workflow file for this run

# This workflow isn't supposed to do something valuable
# it's just a workflow test that it can be triggered by a PR
name: PR Update
on:
pull_request_target:
types: [opened, synchronize, reopened, labeled]
branches:
- main
workflow_dispatch:
permissions:
issues: write
pull-requests: write
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Echo PR info
run: |
echo "PR title: ${{ github.event.pull_request.title }}"
echo "PR body: ${{ github.event.pull_request.body }}"
echo "PR head branch: ${{ github.event.pull_request.head.branch }}"
echo "PR base branch: ${{ github.event.pull_request.base.branch }}"