Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 10 Mar 15:28
· 85 commits to main since this release
72db648
  • GitHub Action

    It's now easier than ever to integrate boywithkeyboard's updater into your workflow.

    name: update
    
    on:
      schedule:
        - cron: '0 0 * * *'
      workflow_dispatch:
    
    permissions:
      contents: write
      pull-requests: write
    
    jobs:
      update:
        runs-on: ubuntu-latest
    
        steps:
          - uses: actions/checkout@v4
    
          - name: Run updater
            uses: boywithkeyboard/updater@v0

    Read more