Skip to content

test variables

test variables #5

name: collator-selection

Check failure on line 1 in .github/workflows/collator-selection.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/collator-selection.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: outputs
# Controls when the action will run.
on:
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
#Define Workflow variables
env:
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
collator-selection:
# The type of runner that the job will run on
runs-on: [self-hosted]
continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
steps:
- name: Clean Workspace
uses: AutoModality/[email protected]
- name: Check and pull polkadot image
id: polkadot
uses: cloudposse/github-action-docker-image-exists@main
with:
registry: registry.hub.docker.com
organization: parity
repository: polkadot
login: ${{ secrets.CORE_DOCKERHUB_USERNAME }}
password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}
tag: ${{ matrix.relay_branch }}
outputs:
result: ${{ steps.polkadot.outputs.exists }}
result_conclusion: ${{ steps.polkadot.outputs.conclusion }}
image: ${{ steps.polkadot.outputs.image }}
tag: ${{ steps.polkadot.outputs.tag }}