Grab issue by @nfuden #15
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: grabissue | |
run-name: Grab issue by @${{ github.actor }} | |
permissions: | |
contents: read | |
issues: write | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: "The branch to run tests against" | |
type: choice | |
options: | |
- solo-io | |
- target | |
page_limit: | |
description: "pagelimit" | |
type: number | |
pull_request: | |
types: [opened] | |
jobs: | |
grab_and_update: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 3600 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: issue migrate | |
env: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd issuegrabber | |
go run main.go |