NWB request: filter and sort rows of DynamicTable #44
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 Issue or PR to Dashboard | |
on: | |
issues: | |
types: opened | |
pull_request: | |
types: | |
- opened | |
jobs: | |
issue_opened: | |
name: Add Issue to Dashboard | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' | |
steps: | |
- name: Add Issue to Dashboard | |
uses: leonsteinhaeuser/project-beta-automations@v1.2.1 | |
with: | |
gh_token: ${{ secrets.MY_GITHUB_TOKEN }} | |
organization: flatironinstitute | |
project_id: 4 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
pr_opened: | |
name: Add PR to Dashboard | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
steps: | |
- name: Add PR to Dashboard | |
uses: leonsteinhaeuser/project-beta-automations@v1.2.1 | |
with: | |
gh_token: ${{ secrets.MY_GITHUB_TOKEN }} | |
organization: flatironinstitute | |
project_id: 4 | |
resource_node_id: ${{ github.event.pull_request.node_id }} |