Skip to content

Commit

Permalink
Improvements to Github Actions (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
gab-arrobo authored Apr 10, 2024
1 parent cf2d782 commit 5c0ff0a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2023 Canonical Ltd.
# Copyright 2024 Intel Corporation

name: Master workflow

Expand Down Expand Up @@ -33,7 +34,6 @@ jobs:
run: make docker-build

lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
push-images:
runs-on: ubuntu-latest
if: github.repository_owner == 'omec-project'
env:
REGISTRY: registry.aetherproject.org
DOCKER_REGISTRY: registry.aetherproject.org/
Expand Down Expand Up @@ -48,6 +49,7 @@ jobs:
# CAUTION: Other actions depend on this name "tag-github"
tag-github:
runs-on: ubuntu-latest
if: github.repository_owner == 'omec-project'
outputs:
changed: ${{ steps.version-change.outputs.changed }}
version: ${{ steps.version-change.outputs.version }}
Expand Down Expand Up @@ -108,7 +110,7 @@ jobs:
https://api.github.com/repos/${{ github.repository }}/releases \
-d '{
"tag_name": "v${{ steps.version-change.outputs.version }}",
"target_commitish": "master",
"target_commitish": "${{ github.event.repository.default_branch }}",
"name": "v${{ steps.version-change.outputs.version }}",
"draft": false,
"prerelease": false,
Expand All @@ -132,7 +134,7 @@ jobs:

- uses: docker/[email protected]
with:
registry: docker.io
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ on:
schedule:
- cron: "0 0 * * *"

env:
DAYS_BEFORE_STALE: 120
DAYS_BEFORE_CLOSE: 15

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been stale for 30 days and will be closed in 5 days. Comment to keep it open.'
stale-pr-message: 'This pull request has been stale for 30 days and will be closed in 5 days. Comment to keep it open.'
stale-issue-message: 'This issue has been stale for ${{ env.DAYS_BEFORE_STALE }} days and will be closed in ${{ env.DAYS_BEFORE_CLOSE }} days. Comment to keep it open.'
stale-pr-message: 'This pull request has been stale for ${{ env.DAYS_BEFORE_STALE }} days and will be closed in ${{ env.DAYS_BEFORE_CLOSE }} days. Comment to keep it open.'
stale-issue-label: 'stale/issue'
stale-pr-label: 'stale/pr'
days-before-stale: 30
days-before-close: 5
days-before-stale: ${{ env.DAYS_BEFORE_STALE }}
days-before-close: ${{ env.DAYS_BEFORE_CLOSE }}

0 comments on commit 5c0ff0a

Please sign in to comment.