-
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.
- Loading branch information
1 parent
ace6897
commit 660dce2
Showing
2 changed files
with
48 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# The primary point of this workflow is to ensure that the developer experience is good. | ||
# We take a very vanilla ubuntu image, install all necessary dependencies via "normal" means, | ||
# and then run the build and test steps as described in the README.md file. | ||
|
||
# The artifacts produced by these builds are not intended to be used for anything other than | ||
# ensuring that the developer experience is good. | ||
|
||
# Production artifacts are produced in a sterile environment (in another CI workflow). | ||
|
||
|
||
name: Developer Experience | ||
on: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
just: 1.36.0 | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
packages: read | ||
id-token: write | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: login to ghcr.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- run: ./scripts/update-versions.sh | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
branch: 'update-versions/${{ github.event.inputs.branch }}' | ||
title: 'Update versions' | ||
assignees: "daniel-noland" | ||
labels: "update,bot" | ||
maintainer-can-modify: 'true' | ||
sign-commits: 'true' |