mirror of
https://github.com/netbirdio/ice.git
synced 2026-05-22 17:10:58 -07:00
Update CI configs to v0.5.6
Update lint scripts and CI configs.
This commit is contained in:
@@ -4,7 +4,21 @@ on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
checksecret:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
is_PIONBOT_PRIVATE_KEY_set: ${{ steps.checksecret_job.outputs.is_PIONBOT_PRIVATE_KEY_set }}
|
||||
steps:
|
||||
- id: checksecret_job
|
||||
env:
|
||||
PIONBOT_PRIVATE_KEY: ${{ secrets.PIONBOT_PRIVATE_KEY }}
|
||||
run: |
|
||||
echo "is_PIONBOT_PRIVATE_KEY_set: ${{ env.PIONBOT_PRIVATE_KEY != '' }}"
|
||||
echo "::set-output name=is_PIONBOT_PRIVATE_KEY_set::${{ env.PIONBOT_PRIVATE_KEY != '' }}"
|
||||
|
||||
generate-authors:
|
||||
needs: [checksecret]
|
||||
if: needs.checksecret.outputs.is_PIONBOT_PRIVATE_KEY_set == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
Reference in New Issue
Block a user