Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yjf2002ghty authored Nov 2, 2024
1 parent 5afc012 commit b36bbfd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Example Workflow

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
print-urls:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Print repository URL
run: |
echo "Repository URL: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}"
- name: Print Pull Request URL
if: github.event_name == 'pull_request'
run: |
echo "Pull Request URL: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/pull/${{ github.event.pull_request.number }}"
- name: Print source and target branch names
run: |
echo "Source Branch: ${{ github.event.pull_request.head.ref }}"
echo "Target Branch: ${{ github.event.pull_request.base.ref }}"

0 comments on commit b36bbfd

Please sign in to comment.