Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 10 additions & 1 deletion .github/workflows/automated-tagging-versioning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,13 @@ jobs:
- name: Automated Tagging and Versioning
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: semantic-release
FAIL_COMMENT_NAME: "Automated Tagging and Versioning"
FAIL_COMMENT_MESSAGE: "An error occurred during the automated tagging and versioning process."
FAIL_COMMENT_CONTEXT: "GitHub Actions Workflow"
FAIL_COMMENT_DETAILS: "Check the logs for more details."
run: |
export FAIL_COMMENT_NAME="Automated Tagging and Versioning"
export FAIL_COMMENT_MESSAGE="An error occurred during the automated tagging and versioning process."
export FAIL_COMMENT_CONTEXT="GitHub Actions Workflow"
export FAIL_COMMENT_DETAILS="Check the logs for more details."
semantic-release
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main'
env:
FAIL_COMMENT_NAME: "Create Release"
FAIL_COMMENT_MESSAGE: "An error occurred during the release creation process."
FAIL_COMMENT_CONTEXT: "GitHub Actions Workflow"
FAIL_COMMENT_DETAILS: "Check the logs for more details."
with:
tag_name: v${{ env.VERSION }}
name: "Arch Linux No Beeps v${{ env.VERSION }}"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/generate-release-notes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
- name: Generate Release Notes
id: generate_release_notes
uses: release-drafter/release-drafter@v5
env:
FAIL_COMMENT_NAME: "Generate Release Notes"
FAIL_COMMENT_MESSAGE: "An error occurred during the release notes generation process."
FAIL_COMMENT_CONTEXT: "GitHub Actions Workflow"
FAIL_COMMENT_DETAILS: "Check the logs for more details."
with:
config-name: release-drafter.yml

Expand Down