This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
forked from heroku/heroku-buildpack-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
* upstream/main: (79 commits) Delete CNB release workflow (heroku#1303) v240 (heroku#1298) Upgrade Bundler 2.x to v2.3.10 (heroku#1296) Bump parallel_tests from 3.7.3 to 3.8.1 (heroku#1292) Bump actions/checkout from 2.4.0 to 3 (heroku#1283) Bump excon from 0.91.0 to 0.92.1 (heroku#1286) Bump peter-evans/create-pull-request from 3 to 4 (heroku#1291) Split bootstrap version from default version (heroku#1289) Rollback bundler change (heroku#1281) Upgrade bundler to 2.3.7 (heroku#1276) v237 (heroku#1277) Update default Ruby version to 3.0.3 (heroku#1270) Bump buildpacks/github-actions from 4.5.1 to 4.6.0 (heroku#1275) Bump rspec-expectations from 3.10.2 to 3.11.0 (heroku#1272) Bump excon from 0.90.0 to 0.91.0 (heroku#1269) Bump redis from 4.5.1 to 4.6.0 (heroku#1268) Bump toml-rb from 2.1.1 to 2.1.2 (heroku#1266) Bump ci-queue from 0.22.0 to 0.22.1 (heroku#1265) Bump rspec-core from 3.10.1 to 3.10.2 (heroku#1264) Bump buildpacks/github-actions from 4.5.0 to 4.5.1 (heroku#1263) ...
- Loading branch information
Showing
71 changed files
with
1,308 additions
and
1,414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* @heroku/languages | ||
#ECCN:Open Source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
name: Check Changelog | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, edited, synchronize] | ||
pull_request: | ||
types: [opened, reopened, edited, labeled, unlabeled, synchronize] | ||
|
||
jobs: | ||
build: | ||
check-changelog: | ||
runs-on: ubuntu-latest | ||
if: | | ||
!contains(github.event.pull_request.body, '[skip changelog]') && | ||
!contains(github.event.pull_request.body, '[changelog skip]') && | ||
!contains(github.event.pull_request.body, '[skip ci]') && | ||
!contains(github.event.pull_request.labels.*.name, 'skip changelog') && | ||
!contains(github.event.pull_request.labels.*.name, 'dependencies') && | ||
!contains(github.event.pull_request.labels.*.name, 'automation') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Check that CHANGELOG is touched | ||
run: | | ||
cat $GITHUB_EVENT_PATH | jq .pull_request.title | grep -i '\[\(\(changelog skip\)\|\(ci skip\)\)\]' || git diff remotes/origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md | ||
- uses: actions/checkout@v3 | ||
- name: Check that CHANGELOG is touched | ||
run: | | ||
git fetch origin ${{ github.base_ref }} --depth 1 && \ | ||
git diff remotes/origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ buildpacks/* | |
.anvil/ | ||
tmp/*.log | ||
log/*.log | ||
spec/examples.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--require dead_end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.