Skip to content

Bump peter-evans/create-pull-request from 6.0.2 to 6.0.3 #21

Bump peter-evans/create-pull-request from 6.0.2 to 6.0.3

Bump peter-evans/create-pull-request from 6.0.2 to 6.0.3 #21

Workflow file for this run

# Copyright 2023 Chainguard, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Test
on:
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Run Digestabot
uses: ./
with:
create-pr: false
- name: Check changes
run: |
if [[ $(git diff --stat) == '' ]]; then
echo 'should exist changes'
exit 1
else
exit 0
fi
shell: bash