GitHub Actions에서 끌어 오기 요청 URL을 얻는 방법

1495 단어 GitHubActions

결론


${{ github.event.pull_request.html_url }}

에서 잡을 수 있는

sample.yml
name: Show Pull Request Event

on:
  pull_request:
    branches:
      - master

jobs:
  show:
    runs-on: ubuntu-latest
    steps:
      - name: Run echo
        run: echo ${{ github.event.pull_request.html_url }}

문서



Webhook events and payloads



요약



slack 등에 통지 할 때 붙여두면 날 수 있기 때문에 편리 할지도

좋은 웹페이지 즐겨찾기