mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-27 05:05:56 +00:00
GitHub Actions cleanups (#24620)
- Remove actions name where command is descriptive enough - Use kebab-case instead of snake-case for step names - Use shorter job names because to make PR checks more readable - Remove duplicate `checks-backend` --------- Co-authored-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
parent
365bb77a54
commit
6c8b680f91
13 changed files with 173 additions and 288 deletions
17
.github/workflows/pull-docker-dryrun.yml
vendored
Normal file
17
.github/workflows/pull-docker-dryrun.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: docker-dryrun
|
||||
|
||||
on: [pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
docker-dryrun:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: docker/setup-buildx-action@v2
|
||||
- uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: false
|
||||
tags: gitea/gitea:linux-amd64
|
Loading…
Add table
Add a link
Reference in a new issue