Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gh workflows for complete release workflow #1266

Merged
merged 3 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- 'main'
tags-ignore:
- '*'
pull_request: {}
name: Continuous Integration
on: [pull_request, workflow_dispatch]

concurrency:
group: ci-${{ github.head_ref || github.ref }}
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/update-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ name: Update UI Docker image

on:
workflow_dispatch:
push:
branches:
- 'main'
tags-ignore:
- '*'
pull_request:
types:
- closed

jobs:
build:
if: github.repository == 'eclipse-pass/pass-ui'
if: github.event.pull_request.merged == true && github.repository == 'eclipse-pass/pass-ui'
runs-on: ubuntu-latest
timeout-minutes: 10

Expand Down
Loading