Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/deploy_to_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ jobs:

- name: Set Git config
run: |
git config --local user.email "maximontenegro512@gmail.com"
git config --local user.name "maxi512"
gh auth login --with-token ${{ secrets.ACCOUNT_TOKEN }}

- name: Merge test to main
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_project_code_review.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Move assigned pull requests into Code review
name: Mover la tarjeta del pull request a "Code review pendiente"

on:
pull_request:
Expand All @@ -11,5 +11,5 @@ jobs:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Features
column: Code review
column: Code review pendiente
repo-token: ${{ secrets.GHTOKEN }}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Move assigned pull requests into Testing
name: Mover la tarjeta del pull request a "Desplegado en Testing"

on:
pull_request:
Expand All @@ -12,5 +12,5 @@ jobs:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Features
column: Testing
column: Desplegado en Testing
repo-token: ${{ secrets.GHTOKEN }}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Move assigned pull requests into In progress
name: Mover la tarjeta del pull request a "En desarrollo"

on:
pull_request:
Expand All @@ -11,5 +11,5 @@ jobs:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Features
column: In progress
column: En desarrollo
repo-token: ${{ secrets.GHTOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/update_project_to_do.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Mover la tarjeta del pull request a "To do"

on:
pull_request:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Features
column: To do
repo-token: ${{ secrets.GHTOKEN }}