Off set is not passed to the backend properly in the facility specific users page #11857
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: Automate Issues to Project | |
on: | |
issues: | |
types: | |
- opened | |
- reopened | |
- closed | |
- assigned | |
jobs: | |
issue_opened_and_reopened: | |
name: issue_opened_and_reopened | |
runs-on: ubuntu-24.04-arm | |
if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened' | |
steps: | |
- name: 'Move issue to "Triage"' | |
uses: leonsteinhaeuser/[email protected] | |
with: | |
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
organization: ohcnetwork | |
project_id: 4 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: "Triage" | |
issue_closed: | |
name: issue_closed | |
runs-on: ubuntu-24.04-arm | |
if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'closed' | |
steps: | |
- name: 'Moved issue to "Done"' | |
uses: leonsteinhaeuser/[email protected] | |
with: | |
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
organization: ohcnetwork | |
project_id: 4 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: "Done" | |
issue_assigned: | |
name: issue_assigned | |
runs-on: ubuntu-24.04-arm | |
if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'assigned' | |
steps: | |
- name: 'Move issue to "In Progress"' | |
uses: leonsteinhaeuser/[email protected] | |
with: | |
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
organization: ohcnetwork | |
project_id: 4 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: "In Progress" |