chore: remove changelog job in circle config (#21162)

pull/21226/head
Cody Shepherd 2021-04-09 07:09:33 -07:00 committed by GitHub
parent 599700b41b
commit bc09757284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 28 deletions

View File

@ -99,26 +99,6 @@ jobs:
--aws-region us-east-1
from: 'oss-packages'
to: 's3://dl.influxdata.com/influxdb/releases'
changelog:
docker:
- image: jsternberg/changelog:latest
steps:
- checkout
- run:
name: changelog-magic
command: |
set -ex
if [ -n << pipeline.git.base_revision >> ]; then
sh "git changelog << pipeline.git.base_revision >>"
else
sh "git changelog"
fi
if ! git diff --quiet; then
git config remote.origin.pushurl git@github.com:influxdata/influxdb.git
git commit -am 'Update changelog'
git push origin HEAD:${CIRCLE_BRANCH}
fi
oss_release_candidate:
machine:
enabled: true
@ -167,10 +147,6 @@ workflows:
on_push:
jobs:
- export_vars
- changelog:
filters:
branches:
only: /^1(.\d+)*$/
- test:
requires:
- export_vars
@ -189,10 +165,6 @@ workflows:
- "1.8"
jobs:
- export_vars
- changelog:
filters:
branches:
only: /^1(.\d+)*$/
- test:
requires:
- export_vars