Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed May 26, 2024
1 parent 945db38 commit 3b8e30e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
BUNDLE_RETRY: 3

environment:
name: website
name: facioquo.com

steps:

Expand All @@ -26,9 +26,8 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 1 # Increment this number if you need to re-download cached gems
ruby-version: "3.3"
bundler-cache: true

- name: Define tag
id: tag
Expand Down Expand Up @@ -60,4 +59,4 @@ jobs:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }}
directory: _site
wranglerVersion: 'latest'
wranglerVersion: "latest"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Lint PR"
name: "Pull request"

on:
pull_request_target:
Expand All @@ -12,7 +12,7 @@ permissions:

jobs:
main:
name: validate PR title
name: lint PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand All @@ -39,7 +39,7 @@ jobs:
# event triggers in your workflow.
ignoreLabels: |
bot
ignore-semantic-pull-request
dependencies
- uses: marocchino/sticky-pull-request-comment@v2
# When the previous steps fails, the workflow would stop. By adding this
Expand All @@ -57,9 +57,15 @@ jobs:
#### Pull request title naming convention
Our PR title name taxonomy is `type: Subject`, where **type** is typically
*feat*, *fix*, or *chore*, and **subject** is a phrase (proper noun) that starts with a capitalized letter.
The *chore* type usually has a subject that starts with an action verb like *Add* or *Update*.
Examples: `feat: Admin portal login`, `fix: Divide by zero bug in SMA`, and `chore: Update user docs`.
*feat*, *fix*, or *chore*, and **subject** is a phrase (proper noun) that starts
with a capitalized letter. The *chore* type usually has a subject that starts
with an action verb like *Add* or *Update*. Examples:
- _feat: Admin portal login_
- _fix: Divide by zero in X calculation_
- _chore: Update packages_
- _docs: Improve setup guidance_
See the [Conventional Commits specification](https://www.conventionalcommits.org) for more information.
# Delete a previous comment when the issue has been resolved
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 1 # Increment this number if you need to re-download cached gems
ruby-version: "3.3"
bundler-cache: true

- name: Build site
run: bundle exec jekyll build
Expand Down

0 comments on commit 3b8e30e

Please sign in to comment.