Skip to content

Commit

Permalink
test auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 27, 2024
1 parent ace6897 commit 9b5385c
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# ensuring that the developer experience is good.

# Production artifacts are produced in a sterile environment (in another CI workflow).
# TESTING 123


name: Developer Experience
on:
Expand Down
53 changes: 53 additions & 0 deletions .github/workflows/update-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# 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:
push:
branches:
- real-readme



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'

0 comments on commit 9b5385c

Please sign in to comment.