Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unwanted files #14

Merged
merged 1 commit into from
Mar 7, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/commit-quality-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# fails


name: Beams Commit Message Checker
name: Beams Commit Message Checker

on:
pull_request:
Expand Down
67 changes: 67 additions & 0 deletions .github/workflows/commit-quality-checker.yml_no_wanted
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# https://github.com/marketplace/actions/commit-quality-checker

# TEST 1
# feat: update action conventional commits
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files
# ING-3232
# fails

# TEST 2
# fixup! feat: update action conventional commits
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files
# ING-3232
# fails

# TEST 3
# docs: update action conventional commits
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files
# ING-3232
# fails

# TEST 4
# feat!: send an email to the customer when a product is shipped
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files
# ING-3231
# fails

# TEST 5
# feat(api)!: send an email to the customer when a product is shipped
# Introduce a request id and a reference to latest request. Dismiss
# incoming responses other than from latest request.
#
# Remove timeouts which were used to mitigate the racing issue but are
# obsolete now.
#
# Reviewed-by: Z
# Refs: #123
# fails

# TEST 6
# chore: send an email to the customer when a product is shipped
# Introduce a request id and a reference to latest request. Dismiss
# incoming responses other than from latest request.
# fails


name: Beams Commit Message Checker

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
check-commit-message:
runs-on: ubuntu-latest
name: Check commit message
permissions:
pull-requests: write # required to post pull request comments
contents: read # required to read commit information
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check commit message
uses: actions/[email protected]
Loading