From ad4ad1c893b3543e2a3a24698746eda8ac5fa78c Mon Sep 17 00:00:00 2001 From: "Daniel W. Anner" Date: Fri, 3 Mar 2023 16:27:48 +0000 Subject: [PATCH] Adding back workflows --- .github/workflows/docker.yml | 111 ++++++++++++++++++----------------- .github/workflows/stale.yml | 44 +++++++------- 2 files changed, 80 insertions(+), 75 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 438e8f4..2278447 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,55 +1,60 @@ -# --- -# name: ci +--- +name: ci -# on: -# push: -# branches: -# - 'master' -# - 'main' -# pull_request: -# branches: -# - 'master' -# - 'main' -# workflow_dispatch: -# release: -# types: [published, edited] +on: + push: + branches: + - 'master' + - 'main' + pull_request: + branches: + - 'master' + - 'main' + workflow_dispatch: + release: + types: [published, edited] -# jobs: -# build-and-push-images: -# runs-on: ubuntu-latest -# steps: -# - -# name: Checkout -# uses: actions/checkout@v2 -# - -# name: Docker meta -# id: meta -# uses: docker/metadata-action@v3 -# with: -# images: ghcr.io/netbox-community/Netbox-Device-Type-Library-Import -# tags: | -# type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }} -# type=ref,event=branch -# type=ref,event=pr -# type=semver,pattern={{version}} -# type=semver,pattern={{major}} -# type=semver,pattern={{major}}.{{minor}} -# - name: Set up QEMU -# uses: docker/setup-qemu-action@v1 -# - name: Set up Docker Buildx -# uses: docker/setup-buildx-action@v1 -# - name: Login to GitHub Container Registry -# if: github.event_name != 'pull_request' -# uses: docker/login-action@v1 -# with: -# registry: ghcr.io -# username: ${{ github.repository_owner }} -# password: ${{ secrets.GITHUB_TOKEN }} -# - name: Build and push -# uses: docker/build-push-action@v2 -# with: -# context: . -# push: ${{ github.event_name != 'pull_request' }} -# platforms: linux/amd64 -# tags: ${{ steps.meta.outputs.tags }} -# labels: ${{ steps.meta.outputs.labels }} +jobs: + build-and-push-images: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + images: | + ghcr.io/minitriga/Netbox-Device-Type-Library-Import + tags: | + type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }} + type=ref,event=branch + type=ref,event=pr + type=semver,pattern={{version}} + type=semver,pattern={{major}} + type=semver,pattern={{major}}.{{minor}} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to GitHub Container Registry + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + platforms: linux/amd64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index f937c07..4a0237e 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,24 +1,24 @@ --- -# close-stale-issues (https://github.com/marketplace/actions/close-stale-issues) -# name: Close stale PRs -# on: # yamllint disable-line rule:truthy -# schedule: -# - cron: 0 4 * * * +#close-stale-issues (https://github.com/marketplace/actions/close-stale-issues) +name: Close stale PRs +on: # yamllint disable-line rule:truthy + schedule: + - cron: 0 4 * * * -# jobs: -# stale: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/stale@v5 -# with: -# close-pr-message: > -# This PR has been automatically closed due to lack of activity. -# days-before-stale: 30 -# days-before-close: 7 -# operations-per-run: 100 -# remove-stale-when-updated: false -# stale-pr-label: stale -# stale-pr-message: > -# This PR has been automatically marked as stale because it has not -# had recent activity. It will be closed automatically if no further -# progress is made. \ No newline at end of file +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v5 + with: + close-pr-message: > + This PR has been automatically closed due to lack of activity. + days-before-stale: 30 + days-before-close: 7 + operations-per-run: 100 + remove-stale-when-updated: false + stale-pr-label: stale + stale-pr-message: > + This PR has been automatically marked as stale because it has not + had recent activity. It will be closed automatically if no further + progress is made. \ No newline at end of file