Skip to content

xaaha/backend-GitHubActions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 

Repository files navigation

backend-GitHubActions

  • Testing Trigger and Wait

  • Artifact

# name: Get and Store Pr Number
# on:
#   repository_dispatch:
#     types: [pr-input]

# jobs:
#   print_pull_request_number:
#     runs-on: ubuntu-latest
#     steps:
#       - name: Store Pull Request Number
#         run: |
#           echo "Base URL: www.example.com/pr-${{ github.event.client_payload.prNumber }}"
#           echo ${{ github.event.client_payload.prNumber }} > prNumber.txt
#       - name: Upload prNumber as artifact
#         uses: actions/upload-artifact@v2
#         with:
#           name: prNumber
#           path: prNumber.txt

# # it does not work since artifact can't be shared between different workflows.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published