Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/olm-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
with:
ref: ${{ steps.branch.outputs.name }}
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}

- name: Setup Go environment
uses: actions/setup-go@v6
Expand All @@ -50,8 +49,6 @@ jobs:
quay_token: ${{ secrets.QUAY_TOKEN }}

- name: Open catalog PR
env:
GH_TOKEN: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}
run: |
git config user.name rhobs-release-bot
git config user.email release-bot@monitoring.rhobs.io
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/release-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}
persist-credentials: false

# standard-version's release-as relies on controller-gen for code generation.
- name: Setup Go environment
Expand All @@ -41,7 +39,7 @@
check-latest: true

- name: Generate release notes
run: |

Check warning on line 42 in .github/workflows/release-branch.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-branch.yaml#L42

shellcheck reported issue in this script: SC2046:warning:4:16: Quote this to prevent word splitting [shellcheck]
Raw output
w:.github/workflows/release-branch.yaml:42:9: shellcheck reported issue in this script: SC2046:warning:4:16: Quote this to prevent word splitting [shellcheck]
git config user.name rhobs-release-bot
git config user.email release-bot@monitoring.rhobs.io
npx standard-version -i RELEASE_BODY.md \
Expand All @@ -50,7 +48,7 @@

- name: Publish tag
id: publish_tag
run: |

Check notice on line 51 in .github/workflows/release-branch.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release-branch.yaml#L51

shellcheck reported issue in this script: SC2086:info:2:52: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release-branch.yaml:51:9: shellcheck reported issue in this script: SC2086:info:2:52: Double quote to prevent globbing and word splitting [shellcheck]
git push --follow-tags
echo "tag_name=$(git describe HEAD --abbrev=0)" >> $GITHUB_OUTPUT

Expand All @@ -72,7 +70,6 @@
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}

- name: Setup Go environment
uses: actions/setup-go@v6
Expand All @@ -99,8 +96,6 @@
quay_token: ${{ secrets.QUAY_TOKEN }}

- name: Open catalog PR
env:
GH_TOKEN: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}
run: |
git config user.name rhobs-release-bot
git config user.email release-bot@monitoring.rhobs.io
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}

# Bumping the version in the next step will also run code generation scripts
# that depend on controller-gen.
Expand All @@ -42,7 +41,7 @@

- name: Set version
id: version
run: |

Check notice on line 44 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yaml#L44

shellcheck reported issue in this script: SC2086:info:3:28: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yaml:44:9: shellcheck reported issue in this script: SC2086:info:3:28: Double quote to prevent globbing and word splitting [shellcheck]
npx standard-version --skip.commit --skip.tag --skip.changelog
version="$(cat VERSION)-$(date +%y%m%d%H%M%S)"
echo "version=$version" >> $GITHUB_OUTPUT
Expand All @@ -59,8 +58,6 @@
quay_token: ${{ secrets.QUAY_TOKEN }}

- name: Open catalog PR
env:
GH_TOKEN: ${{ secrets.REPOSITORY_PUSH_TOKEN || github.token }}
run: |
git config user.name rhobs-release-bot
git config user.email release-bot@monitoring.rhobs.io
Expand Down