Merge pull request #74 from openstreetmap/dependabot/bundler/git-2.3.1 #315
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: Update Issues | |
on: | |
push: | |
branches: | |
- 'main' | |
issues: | |
types: [opened, reopened, closed, labeled, unlabeled, edited] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
issues: read | |
jobs: | |
updater: | |
name: Update Issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
bundler-cache: true | |
- name: Run updater | |
run: bundle exec ruby bin/update-issues | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |