Skip to content

Improve message when running in Docker (#4269) #1416

Improve message when running in Docker (#4269)

Improve message when running in Docker (#4269) #1416

Workflow file for this run

name: dogfood merge
# This workflow is triggered on pushes to master and dogfood branches
on:
push:
branches:
- master
- 'dogfood/*'
jobs:
dogfood_merge:
runs-on: ubuntu-latest
name: Update dogfood branch
steps:
- name: git octopus step
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
id: dogfood
uses: SonarSource/gh-action_dogfood_merge@v1
with:
dogfood-branch: 'dogfood-on-peach'
# Use the output from the `dogfood` step
- name: Get the name of the dogfood branch and its HEAD SHA1
run: echo "The dogfood branch was ${{ steps.dogfood.outputs.dogfood-branch }} and its HEAD SHA1 was ${{ steps.dogfood.outputs.sha1 }}"