Auto-resize of textarea should happen on visual text changes, not on debounce triggers #642
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: 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 }} |