Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hgarciaalberto/5639a01bb829986a1edecc03d536aeb6 to your computer and use it in GitHub Desktop.
Save hgarciaalberto/5639a01bb829986a1edecc03d536aeb6 to your computer and use it in GitHub Desktop.
Github Actions with projects
name: Mover issue asignado a 'In Progress'
on:
issues:
types:
- assigned
jobs:
issue_opened_or_reopened:
name: issue_opened_or_reopened
runs-on: ubuntu-latest
steps:
- name: 'Move issue to In Progress'
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ secrets.SECRET_TOKEN }}
user: juanppdev
project_id: idproject
resource_node_id: ${{ github.event.issue.node_id }}
status_value: 'In Progress'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment