Skip to content

refactor

refactor #1168

Workflow file for this run

name: ci
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
server:
uses: pycontribs/jira_svc/.github/workflows/jira_svc_server_ci.yml@main
cloud:
needs: server
uses: pycontribs/jira_svc/.github/workflows/jira_svc_cloud_ci.yml@main

Check failure on line 19 in .github/workflows/jira_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/jira_ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/jira_ci.yml" -> "pycontribs/jira_svc/.github/workflows/jira_svc_cloud_ci.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets:
CLOUD_ADMIN: ${{ secrets.CI_jira_svc_CLOUD_ADMIN }}
CLOUD_ADMIN_TOKEN: ${{ secrets.CI_jira_svc_CLOUD_ADMIN_TOKEN }}
CLOUD_USER: ${{ secrets.CI_jira_svc_CLOUD_USER }}
CLOUD_USER_TOKEN: ${{ secrets.CI_jira_svc_CLOUD_USER_TOKEN }}
# 'check' the only job that should be marked as required in
# repository config, so we do not need to change required jobs
# when we add new/remove/rename jobs.
check:
needs:
- cloud
runs-on: ubuntu-latest
steps:
- name: Report success of the test matrix
run: >-
print("All's good")
shell: python