Sync Iterations refs from/to (defined in action env) #2
This file contains hidden or 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: Sync GitHub Project Iterations | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| sync-iterations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Sync iterations | |
| env: | |
| GH_TOKEN: ${{ secrets.PROJECTS_TOKEN }} | |
| ORG: podaac | |
| SOURCE_PROJECT_NUMBER: 74 | |
| TARGET_PROJECT_NUMBER: 75 | |
| run: | | |
| python3 src/sync_projects/sync_iterations.py |