Skip to content

fix secrets

fix secrets #51

Workflow file for this run

name: Build, test
on:
pull_request:
branches:
- "dev"
- "main"
concurrency:
group: ${{ github.base_ref }}
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test_bot:
uses: ./.github/workflows/build_and_test_bot.yml

Check failure on line 17 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / Build, test

Invalid workflow file

The workflow is not valid. In .github/workflows/CI.yml (Line: 17, Col: 11): Error from called workflow anstadnik/FirstAidBot/.github/workflows/build_and_test_bot.yml@ad9221e7366bb97efc6b11a5008ed37629326ec0: (Line: 34, Col: 13, Idx: 801) - (Line: 34, Col: 14, Idx: 802): While parsing a tag, did not find expected tag URI.
with:
release: ${{ github.base_ref == 'main' }}
upload-artifact: true
secrets:
SHEET_ID: ${{ secrets.SHEET_ID }}
build_flutter_apk:
uses: ./.github/workflows/build_flutter_apk.yml
with:
upload-artifact: true
secrets:
SHEET_ID: ${{ secrets.SHEET_ID }}
# It should wait untill all checks will pass
auto-merge:
needs: [build_and_test_bot, build_flutter_apk]
runs-on: ubuntu-latest
if: github.base_ref == 'main'
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
target: minor
github-token: "${{ secrets.GITHUB_TOKEN }}"