Skip to content

It's impossible to drop new elements in the same row when the screen is too narrow #560

It's impossible to drop new elements in the same row when the screen is too narrow

It's impossible to drop new elements in the same row when the screen is too narrow #560

name: Add to HTO project
on:
issues:
types:
- opened
- transferred
pull_request:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@0be3b6580ae2145e72e0ada85d693ab71a5f17d6
name: Add to project
id: add-project
with:
project-url: ${{ secrets.HTO_PROJECT_URL }}
github-token: ${{ secrets.ADD_TO_HTO_PROJECT_PAT }}
- name: Define project column
run: echo "COLUMN=${{ github.event_name == 'pull_request' && 'Needs Review' || 'Inbox' }}" >> $GITHUB_ENV
- uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751
name: Update project column
id: update-column
with:
project-url: ${{ secrets.HTO_PROJECT_URL }}
github-token: ${{ secrets.ADD_TO_HTO_PROJECT_PAT }}
item-id: ${{ steps.add-project.outputs.itemId }}
field-keys: Status
field-values: ${{ env.COLUMN }}