Specify base to simplify workflow development on branches #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: [push] | |
# Manual workflow: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch | |
#on: workflow_dispatch | |
# TODO: Use schedule below once finalized | |
#on: | |
# schedule: | |
# - cron: '17 8 10 * *' # Run monthly on the 10th, at 8:17am | |
jobs: | |
generate-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set TODAY env var | |
run: echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Create branch | |
run: git checkout -b docs-$TODAY | |
- name: Setup Ruby | |
# Docs: https://github.com/ruby/setup-ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true # Runs bundle install and caches gems | |
ruby-version: .ruby-version | |
- name: Generate repos markdown file | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: bin/get_project_data > repos.md | |
- name: Configure git user | |
run: | | |
git config user.name ${{ github.actor }} | |
git config user.email ${{ github.actor }}@users.noreply.github.com | |
- name: Commit | |
run: | | |
git add repos.md | |
git commit -m "Update repos.md $TODAY" | |
- name: Push branch | |
run: | | |
git config push.autoSetupRemote true | |
git push | |
- name: Open pull request | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
gh pr create \ | |
--base ${{ github.ref_name }} | |
--fill | |
--reviewer eliotsykes |