[Bug][macOS]: Dragging from Latest Episodes to the end of Up Next doesn't place the item at the end of the list #221
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: Assign New Issues to Feedback Project | |
on: | |
issues: | |
types: | |
- opened | |
# map fields with customized labels | |
env: | |
needs_review: ⚠Needs Review | |
todo: Todo | |
done: Done | |
in_progress: In Progress | |
jobs: | |
issue_opened: | |
name: issue_opened | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' && (github.event.action == 'opened') | |
steps: | |
- name: Move issue to ${{ env.needs_review }} | |
uses: leonsteinhaeuser/[email protected] | |
with: | |
gh_token: ${{ secrets.MIMIR_FEEDBACK }} | |
user: gdavis | |
# organization: sample-org | |
project_id: 3 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: ${{ env.needs_review }} # Target status |