0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

main の commit が進んだら RELEASE MERGE PR を作る GitHub Action

Last updated at Posted at 2020-11-03

main ブランチの commit が進んだら、foo/main への PR を作る job。
GitHub CLI 使って簡単に書ける。

on:
  push:
    branches:
      - main

jobs:
  create_release_merge_PR:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@v2

      # See: https://github.com/cli/cli/blob/trunk/docs/install_linux.md
      - name: install GitHub CLI
        run: |-
          sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0
          sudo apt-add-repository https://cli.github.com/packages
          sudo apt update
          sudo apt install gh

      # See: https://cli.github.com/manual/gh_auth_login
      # See: https://cli.github.com/manual/gh_pr_create
      - name: create RELEASE MERGE PR
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |-
          git checkout -b release_merge_for_foo
          git push --force origin release_merge_for_foo
          echo $GITHUB_TOKEN > token.txt
          gh auth login --with-token < token.txt
          gh pr create \
          --title "RELEASE MERGE for foo" \
          --base xxx \
          --body "Auto Generated RELEASE MEREGE PR"

yaml

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?