-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from paketo-community/update/pipeline
Bump pipeline from 0.0.0 to 1.10.5
- Loading branch information
Showing
10 changed files
with
668 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @paketo-community/rust-maintainers |
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,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: gomod | ||
directory: / | ||
schedule: | ||
interval: daily | ||
labels: | ||
- semver:patch | ||
- type:dependency-upgrade |
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,27 @@ | ||
- name: semver:major | ||
description: A change requiring a major version bump | ||
color: f9d0c4 | ||
- name: semver:minor | ||
description: A change requiring a minor version bump | ||
color: f9d0c4 | ||
- name: semver:patch | ||
description: A change requiring a patch version bump | ||
color: f9d0c4 | ||
- name: type:bug | ||
description: A general bug | ||
color: e3d9fc | ||
- name: type:dependency-upgrade | ||
description: A dependency upgrade | ||
color: e3d9fc | ||
- name: type:documentation | ||
description: A documentation update | ||
color: e3d9fc | ||
- name: type:enhancement | ||
description: A general enhancement | ||
color: e3d9fc | ||
- name: type:question | ||
description: A user question | ||
color: e3d9fc | ||
- name: type:task | ||
description: A general task | ||
color: e3d9fc |
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 @@ | ||
1.10.5 |
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,32 @@ | ||
template: $CHANGES | ||
name-template: $RESOLVED_VERSION | ||
tag-template: v$RESOLVED_VERSION | ||
categories: | ||
- title: ⭐️ Enhancements | ||
labels: | ||
- type:enhancement | ||
- title: "\U0001F41E Bug Fixes" | ||
labels: | ||
- type:bug | ||
- title: "\U0001F4D4 Documentation" | ||
labels: | ||
- type:documentation | ||
- title: ⛏ Dependency Upgrades | ||
labels: | ||
- type:dependency-upgrade | ||
- title: "\U0001F6A7 Tasks" | ||
labels: | ||
- type:task | ||
exclude-labels: | ||
- type:question | ||
version-resolver: | ||
major: | ||
labels: | ||
- semver:major | ||
minor: | ||
labels: | ||
- semver:minor | ||
patch: | ||
labels: | ||
- semver:patch | ||
default: patch |
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,184 @@ | ||
name: Create Package | ||
"on": | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
create-package: | ||
name: Create Package | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- if: ${{ (github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork) && (github.actor != 'dependabot[bot]') }} | ||
name: Docker login docker.io | ||
uses: docker/login-action@v1 | ||
with: | ||
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }} | ||
registry: docker.io | ||
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.16" | ||
- name: Install create-package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
GO111MODULE=on go get -u -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package | ||
- name: Install crane | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Installing crane ${CRANE_VERSION}" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl \ | ||
--show-error \ | ||
--silent \ | ||
--location \ | ||
"https://github.com/google/go-containerregistry/releases/download/v${CRANE_VERSION}/go-containerregistry_Linux_x86_64.tar.gz" \ | ||
| tar -C "${HOME}/bin" -xz crane | ||
env: | ||
CRANE_VERSION: 0.5.1 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Installing pack ${PACK_VERSION}" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl \ | ||
--location \ | ||
--show-error \ | ||
--silent \ | ||
"https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz" \ | ||
| tar -C "${HOME}"/bin -xz pack | ||
env: | ||
PACK_VERSION: 0.18.1 | ||
- if: ${{ false }} | ||
name: Enable pack Experimental | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Enabling pack experimental features" | ||
mkdir -p "${HOME}"/.pack | ||
echo "experimental = true" >> "${HOME}"/.pack/config.toml | ||
- uses: actions/checkout@v2 | ||
- if: ${{ false }} | ||
uses: actions/cache@v2 | ||
with: | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }} | ||
path: |- | ||
${{ env.HOME }}/.pack | ||
${{ env.HOME }}/carton-cache | ||
restore-keys: ${{ runner.os }}-go- | ||
- id: version | ||
name: Compute Version | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
if [[ ${GITHUB_REF} =~ refs/tags/v([0-9]+\.[0-9]+\.[0-9]+) ]]; then | ||
VERSION=${BASH_REMATCH[1]} | ||
elif [[ ${GITHUB_REF} =~ refs/heads/(.+) ]]; then | ||
VERSION=${BASH_REMATCH[1]} | ||
else | ||
VERSION=$(git rev-parse --short HEAD) | ||
fi | ||
echo "::set-output name=version::${VERSION}" | ||
echo "Selected ${VERSION} from | ||
* ref: ${GITHUB_REF} | ||
* sha: ${GITHUB_SHA} | ||
" | ||
- name: Create Package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
if [[ "${INCLUDE_DEPENDENCIES}" == "true" ]]; then | ||
create-package \ | ||
--cache-location "${HOME}"/carton-cache \ | ||
--destination "${HOME}"/buildpack \ | ||
--include-dependencies \ | ||
--version "${VERSION}" | ||
else | ||
create-package \ | ||
--destination "${HOME}"/buildpack \ | ||
--version "${VERSION}" | ||
fi | ||
[[ -e package.toml ]] && cp package.toml "${HOME}"/package.toml | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}"/buildpack "${OS}" >> "${HOME}"/package.toml | ||
env: | ||
INCLUDE_DEPENDENCIES: "false" | ||
OS: linux | ||
VERSION: ${{ steps.version.outputs.version }} | ||
- id: package | ||
name: Package Buildpack | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
if [[ -n "${PUBLISH+x}" ]]; then | ||
pack package-buildpack \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--publish | ||
crane tag "${PACKAGE}:${VERSION}" latest | ||
echo "::set-output name=digest::$(crane digest "${PACKAGE}:${VERSION}")" | ||
else | ||
pack package-buildpack \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--format "${FORMAT}" | ||
fi | ||
env: | ||
PACKAGE: docker.io/paketocommunity/rustup | ||
PUBLISH: "true" | ||
VERSION: ${{ steps.version.outputs.version }} | ||
- name: Update release with digest | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
PAYLOAD=$(cat "${GITHUB_EVENT_PATH}") | ||
RELEASE_ID=$(jq -n -r --argjson PAYLOAD "${PAYLOAD}" '$PAYLOAD.release.id') | ||
RELEASE_TAG_NAME=$(jq -n -r --argjson PAYLOAD "${PAYLOAD}" '$PAYLOAD.release.tag_name') | ||
RELEASE_NAME=$(jq -n -r --argjson PAYLOAD "${PAYLOAD}" '$PAYLOAD.release.name') | ||
RELEASE_BODY=$(jq -n -r --argjson PAYLOAD "${PAYLOAD}" '$PAYLOAD.release.body') | ||
gh api \ | ||
--method PATCH \ | ||
"/repos/:owner/:repo/releases/${RELEASE_ID}" \ | ||
--field "tag_name=${RELEASE_TAG_NAME}" \ | ||
--field "name=${RELEASE_NAME}" \ | ||
--field "body=${RELEASE_BODY//<!-- DIGEST PLACEHOLDER -->/\`${DIGEST}\`}" | ||
env: | ||
DIGEST: ${{ steps.package.outputs.digest }} | ||
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
- if: ${{ true }} | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.0.1 | ||
with: | ||
address: docker.io/paketocommunity/rustup@${{ steps.package.outputs.digest }} | ||
id: paketo-community/rustup | ||
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
version: ${{ steps.version.outputs.version }} |
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,29 @@ | ||
name: Minimal Labels | ||
"on": | ||
pull_request: | ||
types: | ||
- synchronize | ||
- reopened | ||
- labeled | ||
- unlabeled | ||
jobs: | ||
semver: | ||
name: Minimal Semver Labels | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: mheap/github-action-required-labels@v1 | ||
with: | ||
count: 1 | ||
labels: semver:major, semver:minor, semver:patch | ||
mode: exactly | ||
type: | ||
name: Minimal Type Labels | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: mheap/github-action-required-labels@v1 | ||
with: | ||
count: 1 | ||
labels: type:bug, type:dependency-upgrade, type:documentation, type:enhancement, type:question, type:task | ||
mode: exactly |
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,17 @@ | ||
name: Synchronize Labels | ||
"on": | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/labels.yml | ||
jobs: | ||
synchronize: | ||
name: Synchronize Labels | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: micnncim/action-label-syncer@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} |
Oops, something went wrong.