Skip to content

chore(ci): Refactor release workflows and secrets handling #15

chore(ci): Refactor release workflows and secrets handling

chore(ci): Refactor release workflows and secrets handling #15

name: CI (PR)
on:
# Runs whenever a pull request is opened or updated.
pull_request:
jobs:
pr_title_check:
name: PR title check
runs-on: ubuntu-latest
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
doc_checks:
name: Doc checks
uses: ./.github/workflows/_check_docs.yaml

Check failure on line 18 in .github/workflows/on_pull_request.yaml

View workflow run for this annotation

GitHub Actions / CI (PR)

Invalid workflow file

The workflow is not valid. apify/crawlee-python/.github/workflows/_check_docs.yaml@b63ff3922a3cece7e4abf4a4c95fbba6f062fbe4 (Line: 18, Col: 28): Invalid secret, APIFY_SIGNING_TOKEN is not defined in the referenced workflow.
secrets:
APIFY_SIGNING_TOKEN: ${{ secrets.APIFY_SIGNING_TOKEN }}
code_checks:
name: Code checks
uses: ./.github/workflows/_check_code.yaml
tests:
name: Tests
uses: ./.github/workflows/_tests.yaml
secrets:
APIFY_HTTPBIN_TOKEN: ${{ secrets.APIFY_HTTPBIN_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}