ワークフローを作成する 特定時刻、または手動でワークフローを実行できる リポジトリのmasterブランチをpullして、Qiitaの記事を更新する 管理している記事ファイルに差分がある場合、Pull Requestを作成する 作成するワークフローは次のようになります。 name: Sync remote and create PR on: schedule: - cron: '0 22 * * *' # 7:00 JST workflow_dispatch: permissions: contents: write pull-requests: write jobs: sync_remote_and_create_pr: runs-on: ubuntu-latest timeout-minutes: 5 steps: - uses: actions/checkout@v3 with: re