Last active
January 2, 2025 09:40
-
-
Save juanppdev/9a973b5b815e35c093cca7a575aae1d9 to your computer and use it in GitHub Desktop.
Github Actions with projects
This file contains hidden or 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: 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
@juanppdev , gracias