Remove unnecessary condition

This commit is contained in:
Rodrigo Q. Saramago 2022-11-26 02:47:44 +01:00
parent cf85b0e5e1
commit 579b665121
No known key found for this signature in database
GPG Key ID: 9B36B2525704A359
2 changed files with 0 additions and 3 deletions

View File

@ -29,7 +29,6 @@ runs:
- name: Get inactive open issues - name: Get inactive open issues
id: stale_issues id: stale_issues
if: ${{ success() }}
uses: ethereum/solidity/.github/actions/query_issues@develop uses: ethereum/solidity/.github/actions/query_issues@develop
with: with:
github_token: ${{ inputs.github_token }} github_token: ${{ inputs.github_token }}
@ -37,7 +36,6 @@ runs:
- name: Collect query result - name: Collect query result
id: found_issues id: found_issues
if: ${{ success() }}
shell: bash shell: bash
run: | run: |
filter_result=$( filter_result=$(

View File

@ -25,7 +25,6 @@ jobs:
inactivity_period: ${{ env.INACTIVITY_PERIOD }} inactivity_period: ${{ env.INACTIVITY_PERIOD }}
- name: Comment on found issues - name: Comment on found issues
if: ${{ success() }}
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |