mirror of
https://github.com/pion/webrtc.git
synced 2025-09-26 19:21:12 +08:00
Update CI configs to v0.5.7
Update lint scripts and CI configs.
This commit is contained in:
14
.github/workflows/generate-authors.yml
vendored
14
.github/workflows/generate-authors.yml
vendored
@@ -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