Fixing example tests which rely on json output which was not determin… #806
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Core Feature Development | |
on: | |
push: | |
branches-ignore: | |
- main | |
- development | |
pull_request: | |
branches: ['development'] | |
workflow_dispatch: | |
inputs: | |
env: | |
# Use docker.io for Docker Hub if empty | |
REGISTRY: ghcr.io | |
# github.repository as <account>/<repo> | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
slug: | |
runs-on: ubuntu-latest | |
outputs: | |
github_ref_slug: ${{ env.GITHUB_REF_NAME_SLUG }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: GitHub Slug Action | |
uses: rlespinasse/github-slug-action@v4.4.0 | |
feature: | |
uses: ./.github/workflows/main.yml | |
needs: slug | |
with: | |
version_format: '${major}.${minor}.${patch}-${{ needs.slug.outputs.github_ref_slug }}.${increment}' | |
secrets: inherit |