mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d17846600 | |||
| 74f2d09a5e |
@@ -5,12 +5,13 @@ on:
|
|||||||
types: [opened, reopened, edited, synchronize]
|
types: [opened, reopened, edited, synchronize]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check-changelog:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: |
|
if: |
|
||||||
!contains(github.event.pull_request.body, '[skip changelog]') &&
|
!contains(github.event.pull_request.body, '[skip changelog]') &&
|
||||||
!contains(github.event.pull_request.body, '[changelog skip]') &&
|
!contains(github.event.pull_request.body, '[changelog skip]') &&
|
||||||
!contains(github.event.pull_request.body, '[skip ci]')
|
!contains(github.event.pull_request.body, '[skip ci]') &&
|
||||||
|
!contains(github.event.pull_request.labels.*.name, 'c: dependencies')
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Check that CHANGELOG is touched
|
- name: Check that CHANGELOG is touched
|
||||||
|
|||||||
+18
-10
@@ -1,13 +1,21 @@
|
|||||||
[buildpack]
|
[buildpack]
|
||||||
name = "Python"
|
name = "Python"
|
||||||
|
|
||||||
[publish.Ignore]
|
[publish.Ignore]
|
||||||
files = [
|
files = [
|
||||||
"test/",
|
".git2gus/",
|
||||||
".gitignore",
|
".github/",
|
||||||
".dockerignore",
|
"builds/",
|
||||||
".github/",
|
"spec/",
|
||||||
"Dockerfile",
|
"test/",
|
||||||
"Pipfile",
|
".dockerignore",
|
||||||
"Pipfile.lock"
|
".gitignore",
|
||||||
]
|
".travis.yml",
|
||||||
|
"Gemfile",
|
||||||
|
"Gemfile.lock",
|
||||||
|
"hatchet.json",
|
||||||
|
"hatchet.lock",
|
||||||
|
"Makefile",
|
||||||
|
"Rakefile",
|
||||||
|
"requirements.txt",
|
||||||
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user