Skip to content

chore: update metadata articles/b07db0211b81e6.md by zenn-metadata-updater #14

chore: update metadata articles/b07db0211b81e6.md by zenn-metadata-updater

chore: update metadata articles/b07db0211b81e6.md by zenn-metadata-updater #14

Workflow file for this run

name: Create published=true pull request
# Main ブランチにマージされたときに実行
on:
pull_request:
branches:
- main
types: [closed]
jobs:
# マージされたら、published=true のプルリクエストを作成する
create-pr:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2 # Because if `fetch-depth >= 2` is not set, unchanged files will be updated.
- uses: korosuke613/zenn-metadata-updater-action@v1
with:
published: true
force-push: true
github-token: ${{ secrets.GITHUB_TOKEN }}