Skip to content

Commit

Permalink
Merge pull request #471 from open-sauced/beta
Browse files Browse the repository at this point in the history
v2.33.0-beta.2 -> main
  • Loading branch information
bdougie committed May 25, 2023
2 parents dfb0638 + 2dcad3e commit 2595d28
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 8 deletions.
27 changes: 25 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CodeQL"
name: CodeQL

on:
push:
Expand All @@ -7,7 +7,30 @@ on:
pull_request:
schedule:
- cron: '56 5 * * 1'
workflow_call:

jobs:
analyze:
uses: open-sauced/open-sauced/.github/workflows/codeql-analysis.yml@main
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
language:
- javascript

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
59 changes: 56 additions & 3 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,68 @@
name: "Compliance"
name: Compliance

on:
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened
workflow_call:

permissions:
pull-requests: write

jobs:
compliance:
uses: open-sauced/open-sauced/.github/workflows/compliance.yml@main
semantics:
name: Semantics
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: amannn/action-semantic-pull-request@v3.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

pr-compliance-checks:
name: PR Compliance Checks
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: mtfoley/pr-compliance-action@v0.5.0
with:
body-auto-close: false
protected-branch-auto-close: false
watch-files: |
package.json
package-lock.json
npm-shrinkwrap.json
body-comment: >
## Issue Reference
In order to be considered for merging, the pull request description must refer to a
specific issue number. This is described in our
[Contributing Guide](https://docs.opensauced.pizza/contributing/introduction-to-contributing/).
This check is looking for a phrase similar to: "Fixes #XYZ" or "Resolves #XYZ" where XYZ is the issue
number that this PR is meant to address.
protected-branch-comment: >
## Protected Branch
In order to be considered for merging, the pull request changes must
not be implemented on the "%branch%" branch. This is described in our
[Contributing Guide](https://docs.opensauced.pizza/contributing/introduction-to-contributing/).
We would suggest that you close this PR and implement your changes as
described in our Contributing Guide and open a new pull request.
welcome:
name: Welcome
runs-on: ubuntu-latest
timeout-minutes: 10
needs: semantics
if: github.event.action == 'opened'
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: |-
Congrats on making your first Pull Request and thanks for taking the time to improve Open Sauced! ❤️! 🎉🍕
Say hello by joining the conversation in our [Discord](https://discord.gg/U2peSNf23P)
1 change: 1 addition & 0 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Assign issues with .take

on:
workflow_call:
issue_comment:
types:
- created
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@

> All notable changes to this project will be documented in this file
## [2.33.0-beta.2](https://github.com/open-sauced/hot/compare/v2.33.0-beta.1...v2.33.0-beta.2) (2023-05-25)


### 🐛 Bug Fixes

* add workflow_call to triage.yml ([3a1bc14](https://github.com/open-sauced/hot/commit/3a1bc1416588f4febc4cc219e44e6af48ec95aef))

## [2.33.0-beta.1](https://github.com/open-sauced/hot/compare/v2.32.0...v2.33.0-beta.1) (2023-05-24)


### 🍕 Features

* Remove open-sauced/open-sauced workflows ([#470](https://github.com/open-sauced/hot/issues/470)) ([4ab3e53](https://github.com/open-sauced/hot/commit/4ab3e53792d1b672f1f5eeb5808c621e271e546e))

## [2.32.0](https://github.com/open-sauced/hot/compare/v2.31.0...v2.32.0) (2023-05-21)


Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@open-sauced/hot",
"description": "🍕The site that recommends the hottest sauce.",
"keywords": [],
"version": "2.32.0",
"version": "2.33.0-beta.2",
"author": "TED Vortex <ted.vortex@gmail.com>",
"private": true,
"license": "MIT",
Expand Down

0 comments on commit 2595d28

Please sign in to comment.