Skip to content

Commit 020b498

Browse files
authored
Merge branch 'main' into renovate/actions-github-script-digest
2 parents 575f775 + 3ac2b06 commit 020b498

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/pr.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ on:
55
types: [opened, edited, synchronize]
66

77
jobs:
8+
who-am-i:
9+
runs-on: ubuntu-22.04
10+
steps:
11+
- name: Who am I?
12+
run: |
13+
echo "Actor: ${{ github.actor }}"
814
checklist-completed:
9-
if: github.actor != 'crossplane-renovate[bot]'
15+
if: github.actor != 'renovate[bot]'
1016
runs-on: ubuntu-22.04
1117
steps:
1218
- uses: mheap/require-checklist-action@efef3b1b39d03d12be5ce427c15064f287ba5843 # v2

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ jobs:
9393
- name: Create Release
9494
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
9595
with:
96+
tag_name: ${{ steps.version.outputs.VERSION }}
9697
files: _output/release/*
9798
draft: false
9899
prerelease: ${{ contains(steps.version.outputs.VERSION, 'rc') || contains(steps.version.outputs.VERSION, 'beta') || contains(steps.version.outputs.VERSION, 'alpha') }}

0 commit comments

Comments
 (0)