diff --git a/.github/workflows/metadata-label-pr-ci-status.yaml b/.github/workflows/metadata-label-pr-ci-status.yaml index 65b79469..e30ce0a3 100644 --- a/.github/workflows/metadata-label-pr-ci-status.yaml +++ b/.github/workflows/metadata-label-pr-ci-status.yaml @@ -23,58 +23,10 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} sourceRunId: ${{ github.event.workflow_run.id }} - # label-precommit: - # name: Label pre-commit status - # runs-on: ubuntu-20.04 - # if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }} - # needs: - # - get-info - # steps: - # - uses: getsentry/action-github-app-token@v1 - # id: get-app-token - # with: - # app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} - # private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} - - # # CI Passed - # - name: "add label: ok" - # uses: actions-ecosystem/action-add-labels@v1 - # if: ${{ github.event.workflow_run.conclusion == 'success' }} - # with: - # github_token: ${{ steps.get-app-token.outputs.token }} - # number: ${{ needs.get-info.outputs.pullRequestNumber }} - # labels: "precommit:ok" - - # - name: "remove label: failed" - # uses: actions-ecosystem/action-remove-labels@v1 - # if: ${{ github.event.workflow_run.conclusion == 'success' }} - # with: - # github_token: ${{ steps.get-app-token.outputs.token }} - # number: ${{ needs.get-info.outputs.pullRequestNumber }} - # labels: "precommit:failed" - - # # CI Failed - # - name: "add label: failed" - # uses: actions-ecosystem/action-add-labels@v1 - # if: ${{ github.event.workflow_run.conclusion == 'failure' }} - # with: - # github_token: ${{ steps.get-app-token.outputs.token }} - # number: ${{ needs.get-info.outputs.pullRequestNumber }} - # labels: "precommit:failed" - - # - name: "remove label: ok" - # uses: actions-ecosystem/action-remove-labels@v1 - # if: ${{ github.event.workflow_run.conclusion == 'failure' }} - # with: - # github_token: ${{ steps.get-app-token.outputs.token }} - # number: ${{ needs.get-info.outputs.pullRequestNumber }} - # labels: "precommit:ok" - - label-lint: - name: Label lint status + label-precommit: + name: Label pre-commit status runs-on: ubuntu-20.04 - if: | - ${{ github.event.workflow.name == 'Charts: Lint and tests' }} + if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }} needs: - get-info steps: @@ -117,3 +69,53 @@ jobs: github_token: ${{ steps.get-app-token.outputs.token }} number: ${{ needs.get-info.outputs.pullRequestNumber }} labels: "precommit:ok" + + label-lint: + name: Label lint status + runs-on: ubuntu-20.04 + if: | + ${{ github.event.workflow.name == 'Charts: Lint and tests' }} + needs: + - get-info + steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + + - uses: hmarr/debug-action@v2 + + # # CI Passed + # - name: "add label: ok" + # uses: actions-ecosystem/action-add-labels@v1 + # if: ${{ github.event.workflow_run.conclusion == 'success' }} + # with: + # github_token: ${{ steps.get-app-token.outputs.token }} + # number: ${{ needs.get-info.outputs.pullRequestNumber }} + # labels: "lint:ok" + + # - name: "remove label: failed" + # uses: actions-ecosystem/action-remove-labels@v1 + # if: ${{ github.event.workflow_run.conclusion == 'success' }} + # with: + # github_token: ${{ steps.get-app-token.outputs.token }} + # number: ${{ needs.get-info.outputs.pullRequestNumber }} + # labels: "lint:failed" + + # # CI Failed + # - name: "add label: failed" + # uses: actions-ecosystem/action-add-labels@v1 + # if: ${{ github.event.workflow_run.conclusion == 'failure' }} + # with: + # github_token: ${{ steps.get-app-token.outputs.token }} + # number: ${{ needs.get-info.outputs.pullRequestNumber }} + # labels: "lint:failed" + + # - name: "remove label: ok" + # uses: actions-ecosystem/action-remove-labels@v1 + # if: ${{ github.event.workflow_run.conclusion == 'failure' }} + # with: + # github_token: ${{ steps.get-app-token.outputs.token }} + # number: ${{ needs.get-info.outputs.pullRequestNumber }} + # labels: "lint:ok"