diff --git a/.github/workflows/verifyAudit.yml b/.github/workflows/verifyAudit.yml index 804e7e7a9..7f46ba0c3 100644 --- a/.github/workflows/verifyAudit.yml +++ b/.github/workflows/verifyAudit.yml @@ -372,3 +372,11 @@ jobs: github_token: ${{ secrets.GIT_ACTIONS_BOT_PAT_CLASSIC }} # we use the token of the lifi-action-bot so the label protection check will pass labels: 'AuditCompleted' number: ${{ env.PR_NUMBER }} + + - name: Remove label "AuditCompleted" in case check was not successful but label was assigned in earlier checks + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ env.CONTINUE == 'false' || (env.CONTINUE == 'true' && env.AUDIT_REQUIRED == 'false')}} + with: + github_token: ${{ secrets.GIT_ACTIONS_BOT_PAT_CLASSIC }} # we use the token of the lifi-action-bot so the label protection check will pass + labels: 'AuditCompleted' + number: ${{ env.PR_NUMBER }} diff --git a/slither/ContractInvalidAudit.sol b/src/Facets/ContractInvalidAudit.sol similarity index 100% rename from slither/ContractInvalidAudit.sol rename to src/Facets/ContractInvalidAudit.sol