🌱 clean up monitored repositories (#34) #31
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: Push to Main | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "release/*" | |
| tags: | |
| - "v*" | |
| concurrency: | |
| group: march-build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| outputs: | |
| config: ${{ steps.filter.outputs.config }} | |
| milestone: ${{ steps.filter.outputs.milestone }} | |
| labels: ${{ steps.filter.outputs.labels }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| config: | |
| - "pkg/config/config.yaml" | |
| milestone: | |
| - "cmd/milestones/**" | |
| labels: | |
| - "cmd/labels/**" | |
| milestones: | |
| needs: build | |
| if: ${{ needs.build.outputs.config == 'true' || needs.build.outputs.milestone == 'true' }} | |
| runs-on: ubuntu-latest | |
| permissions: read-all | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Get Token | |
| id: get_workflow_token | |
| uses: peter-murray/workflow-application-token-action@v4 | |
| with: | |
| application_id: ${{ vars.TRUSTIFICATION_BOT_ID }} | |
| application_private_key: ${{ secrets.TRUSTIFICATION_BOT_KEY }} | |
| - env: | |
| GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
| run: RUST_LOG=info cargo run --bin milestones -- --config pkg/config/config.yaml | |
| - env: | |
| GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
| run: RUST_LOG=info cargo run --bin milestones -- --config pkg/config/config.yaml --confirm | |
| labels: | |
| needs: build | |
| if: ${{ needs.build.outputs.config == 'true' || needs.build.outputs.milestone == 'true' }} | |
| runs-on: ubuntu-latest | |
| permissions: read-all | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Get Token | |
| id: get_workflow_token | |
| uses: peter-murray/workflow-application-token-action@v4 | |
| with: | |
| application_id: ${{ vars.TRUSTIFICATION_BOT_ID }} | |
| application_private_key: ${{ secrets.TRUSTIFICATION_BOT_KEY }} | |
| - env: | |
| GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
| run: RUST_LOG=info cargo run --bin labels -- --config pkg/config/config.yaml | |
| - env: | |
| GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
| run: RUST_LOG=info cargo run --bin labels -- --config pkg/config/config.yaml --confirm |