mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-04 04:55:42 -04:00
build: push tvapp v2 docker files
This commit is contained in:
157
.github/workflows/deploy-clean.yml
vendored
157
.github/workflows/deploy-clean.yml
vendored
@@ -1,8 +1,15 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc cleans up the list of deployments in the environment history
|
||||
# edit the 'environment:' to determine which deployment to keep clean
|
||||
# - can be ran manually
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
#
|
||||
# @secrets secrets.SELF_TOKEN_CL Github Access Token (Classic)
|
||||
# secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_WORKFLOWS Discord Webbhook URL; right-click on channel, click "Integrations"
|
||||
# #
|
||||
|
||||
# #
|
||||
|
||||
name: "⚙️ Deploy › Clean"
|
||||
@@ -14,15 +21,40 @@ run-name: "⚙️ Deploy › Clean"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
# #
|
||||
# Deployment Environment Name
|
||||
#
|
||||
# this is the name of the deployment item
|
||||
# #
|
||||
|
||||
DEPLOYMENT_ENV:
|
||||
description: '📦 Deployment Environment'
|
||||
required: true
|
||||
default: 'orion'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Delay
|
||||
#
|
||||
# Milliseconds to wait between cleaning up each action in history. Avoids secondary rate limit. Default: 500
|
||||
# #
|
||||
|
||||
DEPLOYMENT_DELAY:
|
||||
description: '🕛 Delete Delay'
|
||||
required: true
|
||||
default: '1000'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
BOT_NAME_1: AdminServ
|
||||
BOT_NAME_2: AdminServX
|
||||
BOT_NAME_3: EuropaServ
|
||||
DEPLOYMENT_ENV: ${{ github.event.inputs.DEPLOYMENT_ENV || 'orion' }}
|
||||
DEPLOYMENT_DELAY: ${{ github.event.inputs.DEPLOYMENT_DELAY || '1000' }}
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
LABELS_JSON: |
|
||||
[
|
||||
@@ -94,13 +126,126 @@ jobs:
|
||||
cleanup:
|
||||
runs-on: ubuntu-latest
|
||||
permissions: write-all
|
||||
|
||||
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Cleanup › Set Env Variables
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🕛 Get Timestamp
|
||||
id: task_cleanup_set_timestamp
|
||||
run: |
|
||||
echo "NOW=$(date +'%m-%d-%Y %H:%M:%S')" >> $GITHUB_ENV
|
||||
echo "NOW_SHORT=$(date +'%m-%d-%Y')" >> $GITHUB_ENV
|
||||
echo "NOW_LONG=$(date +'%m-%d-%Y %H:%M')" >> $GITHUB_ENV
|
||||
echo "NOW_DOCKER_LABEL=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Release › Github › Checkout › Arm64
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✅ Checkout
|
||||
id: task_cleanup_gh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Cleanup › Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
⚙️ Deployments › Clean
|
||||
id: task_cleanup_start
|
||||
uses: Aetherinox/delete-deploy-env-action@v3
|
||||
with:
|
||||
token: ${{ secrets.SELF_TOKEN_CL }}
|
||||
environment: orion
|
||||
environment: '${{ env.DEPLOYMENT_ENV }}'
|
||||
onlyRemoveDeployments: true
|
||||
delay: "1000"
|
||||
delay: "${{ env.DEPLOYMENT_DELAY }}"
|
||||
|
||||
# #
|
||||
# Cleanup › Get Weekly Commits
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🕛 Get Weekly Commit List
|
||||
id: task_cleanup_set_weekly_commit_list
|
||||
run: |
|
||||
echo 'WEEKLY_COMMITS<<EOF' >> $GITHUB_ENV
|
||||
git log --format="[\`%h\`](${{ github.server_url }}/${{ github.repository }}/commit/%H) %s - %an" --since=7.days >> $GITHUB_ENV
|
||||
echo 'EOF' >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Cleanup › Notify Github › Success
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🔔 Send Discord Webhook Message (Success)
|
||||
id: task_cleanup_notify_discord_success
|
||||
uses: tsickert/discord-webhook@v6.0.0
|
||||
if: success()
|
||||
with:
|
||||
username: 'Io'
|
||||
avatar-url: 'https://i.imgur.com/8BVDkla.jpg'
|
||||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_WORKFLOWS }}
|
||||
embed-title: "**Deployment Cleanup Workflow Ran**"
|
||||
embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||
embed-thumbnail-url: 'https://i.imgur.com/zDIzE8T.jpg'
|
||||
embed-description: |
|
||||
## 📦 Deployment Cleanup ${{ job.status == 'success' && '✅' || '❌' }}
|
||||
|
||||
A **successful** deployment cleanup was triggered on your repository. The history for this environment has been wiped
|
||||
and will no longer list previous deployments you've made.
|
||||
|
||||
- Environment: `${{ env.DEPLOYMENT_ENV }}`
|
||||
- Cleanup Delay: `${{ env.DEPLOYMENT_DELAY }}`
|
||||
- Workflow: `${{ github.workflow }} (#${{github.run_number}})`
|
||||
- Triggered By: ${{ github.actor }}
|
||||
- Status: `${{ job.status == 'success' && '✅ Successful' || '❌ Failed' }}`
|
||||
|
||||
embed-color: ${{ job.status == 'success' && '5763719' || '15418782' }}
|
||||
embed-footer-text: "Completed at ${{ env.NOW }} UTC"
|
||||
embed-timestamp: "${{ env.NOW_LONG }}"
|
||||
embed-author-name: "${{steps.embed.outputs.EMBED_AUTHOR_NAME}}"
|
||||
embed-author-url: "${{ github.event.release.author.html_url }}"
|
||||
embed-author-icon-url: "${{ github.event.release.author.avatar_url }}"
|
||||
|
||||
# #
|
||||
# Cleanup › Notify Github › Failure
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🔔 Send Discord Webhook Message (Failure)
|
||||
id: task_cleanup_notify_discord_failure
|
||||
uses: tsickert/discord-webhook@v6.0.0
|
||||
if: failure()
|
||||
with:
|
||||
username: 'Io'
|
||||
avatar-url: 'https://i.imgur.com/8BVDkla.jpg'
|
||||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_WORKFLOWS }}
|
||||
embed-title: "**Deployment Cleanup Workflow Ran**"
|
||||
embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||
embed-thumbnail-url: 'https://i.imgur.com/zDIzE8T.jpg'
|
||||
embed-description: |
|
||||
## 📦 Deployment Cleanup ${{ job.status == 'success' && '✅' || '❌' }}
|
||||
|
||||
A **failed** deployment cleanup was triggered on your repository. Since the action failed; no entries of your repo's
|
||||
deployment history have been removed.
|
||||
|
||||
- Environment: `${{ env.DEPLOYMENT_ENV }}`
|
||||
- Cleanup Delay: `${{ env.DEPLOYMENT_DELAY }}`
|
||||
- Workflow: `${{ github.workflow }} (#${{github.run_number}})`
|
||||
- Triggered By: ${{ github.actor }}
|
||||
- Status: `${{ job.status == 'success' && '✅ Successful' || '❌ Failed' }}`
|
||||
|
||||
embed-color: ${{ env.STATUS == 'success' && '5763719' || '15418782' }}
|
||||
embed-footer-text: "Completed at ${{ env.NOW }} UTC"
|
||||
embed-timestamp: "${{ env.NOW_LONG }}"
|
||||
embed-author-name: "${{steps.embed.outputs.EMBED_AUTHOR_NAME}}"
|
||||
embed-author-url: "${{ github.event.release.author.html_url }}"
|
||||
embed-author-icon-url: "${{ github.event.release.author.avatar_url }}"
|
||||
|
||||
|
||||
523
.github/workflows/deploy-docker-dockerhub.yml
vendored
Normal file
523
.github/workflows/deploy-docker-dockerhub.yml
vendored
Normal file
@@ -0,0 +1,523 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
# @usage deploys docker container to Dockerhub
|
||||
# @secrets secrets.ADMINSERV_GPG_KEY_ASC gpg private key (armored) | BEGIN PGP PRIVATE KEY BLOCK
|
||||
# secrets.ADMINSERV_GPG_PASSPHRASE gpg private key passphrase
|
||||
# secrets.IMAGE_DOCKERHUB_TOKEN hub.docker.com access token
|
||||
# #
|
||||
|
||||
name: "📦 Deploy › Docker › Dockerhub"
|
||||
run-name: "📦 Deploy › Docker › Dockerhub"
|
||||
|
||||
# #
|
||||
# Triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
|
||||
# #
|
||||
# Trigger › Workflow Dispatch
|
||||
#
|
||||
# If any values are not provided, will use fallback env variable
|
||||
# #
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
# #
|
||||
# Image Name
|
||||
#
|
||||
# used in github image path
|
||||
# ${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
# #
|
||||
|
||||
IMAGE_NAME:
|
||||
description: '📦 Image Name'
|
||||
required: true
|
||||
default: 'keeweb'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image Author
|
||||
#
|
||||
# used in github image path
|
||||
# ${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
# #
|
||||
|
||||
IMAGE_AUTHOR:
|
||||
description: '🪪 Image Author'
|
||||
required: true
|
||||
default: 'antelle'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image Version
|
||||
#
|
||||
# used to create new release tag, and add version to docker image name
|
||||
# #
|
||||
|
||||
IMAGE_VERSION:
|
||||
description: '🏷️ Image Version'
|
||||
required: true
|
||||
default: '1.19.0'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image Dockerhub username
|
||||
#
|
||||
# this is the user to sign into Dockerhub as.
|
||||
# #
|
||||
|
||||
IMAGE_DOCKERHUB_USERNAME:
|
||||
description: '🪪 Dockerhub Username'
|
||||
required: true
|
||||
default: 'antelle'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# true no changes to the repo will be made
|
||||
# false workflow will behave normally, and push any changes detected to the files
|
||||
# #
|
||||
|
||||
DRY_RUN:
|
||||
description: '🐛 Dry Run (Debug)'
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
# #
|
||||
# true released version will be marked as a development build and will have the v1.x.x-development tag instead of -latest
|
||||
# false release version will be marked with -latest docker tag
|
||||
# #
|
||||
|
||||
DEV_RELEASE:
|
||||
description: '🧪 Development Release'
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
# #
|
||||
# Trigger › Push
|
||||
# #
|
||||
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
# #
|
||||
# Environment Vars
|
||||
# #
|
||||
|
||||
env:
|
||||
IMAGE_NAME: ${{ github.event.inputs.IMAGE_NAME || 'keeweb' }}
|
||||
IMAGE_AUTHOR: ${{ github.event.inputs.IMAGE_AUTHOR || 'antelle' }}
|
||||
IMAGE_VERSION: ${{ github.event.inputs.IMAGE_VERSION || '1.19.0' }}
|
||||
IMAGE_DOCKERHUB_USERNAME: ${{ github.event.inputs.IMAGE_DOCKERHUB_USERNAME || 'antelle' }}
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
# #
|
||||
# Jobs
|
||||
#
|
||||
# The way pushed docker containers on Dockerhub work, the most recent image built goes at the top.
|
||||
# We will use the order below which builds the :latest image last so that it appears at the very
|
||||
# top of the packages page.
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job › Create Tag
|
||||
# #
|
||||
|
||||
job-docker-release-tags-create:
|
||||
name: >-
|
||||
📦 Release › Create Tag
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Tags › Start
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_tags_start
|
||||
run: |
|
||||
echo "Creating Tag"
|
||||
|
||||
# #
|
||||
# Release › Tags › Checkout
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_tags_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Tags › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_tags_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Tags › Create Tag
|
||||
#
|
||||
# only called in dispatch mode
|
||||
# #
|
||||
|
||||
- uses: rickstaa/action-create-tag@v1
|
||||
id: task_release_tags_create
|
||||
if: ( github.event_name != 'workflow_dispatch' && inputs.DRY_RUN == false )
|
||||
with:
|
||||
tag: "${{ env.IMAGE_VERSION }}"
|
||||
tag_exists_error: false
|
||||
message: '${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}'
|
||||
gpg_private_key: ${{ secrets.ADMINSERV_GPG_KEY_ASC }}
|
||||
gpg_passphrase: ${{ secrets.ADMINSERV_GPG_PASSPHRASE }}
|
||||
|
||||
# #
|
||||
# Job › Docker Release › Dockerhub › Arm64
|
||||
# #
|
||||
|
||||
job-docker-release-dockerhub-arm64:
|
||||
name: >-
|
||||
📦 Release › Dockerhub › Arm64
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ job-docker-release-tags-create ]
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Start › Arm64
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_dh_start
|
||||
run: |
|
||||
echo "Starting Dockerhub arm64"
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Checkout › Arm64
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_dh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Install Dependencies
|
||||
# #
|
||||
|
||||
- name: '📦 Install Dependencies'
|
||||
id: task_release_dh_dependencies
|
||||
run:
|
||||
sudo apt-get install -qq dos2unix
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Execute dos2unix
|
||||
# #
|
||||
|
||||
- name: '🔐 Apply dos2unix'
|
||||
id: task_release_dh_dos2unix
|
||||
run: |
|
||||
echo "⚠️⚠️⚠️ Running DOS2UNIX ⚠️⚠️⚠️"
|
||||
find ./ \( -path "./.git" -o -path "./docs" -o -path "./.github" -o -path "*.png" -o -path "*.jpg" \) -prune -o -name '*' -print | xargs dos2unix --
|
||||
echo "✅✅✅ Completed DOS2UNIX ✅✅✅"
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_dh_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › QEMU › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Set up QEMU'
|
||||
id: task_release_dh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Setup BuildX › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Setup Buildx'
|
||||
id: task_release_dh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:latest'
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Registry Login › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Login to Dockerhub'
|
||||
id: task_release_dh_registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ env.IMAGE_DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.IMAGE_DOCKERHUB_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Meta › Arm64
|
||||
# #
|
||||
|
||||
- name: '🔨 Dockerhub: Meta - Arm64'
|
||||
id: task_release_dh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
# latest no
|
||||
type=raw,value=latest,enable=false
|
||||
|
||||
# dispatch add x1.x.x-arm64
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == false }},priority=300,prefix=,suffix=-arm64,value=${{ env.IMAGE_VERSION }}
|
||||
|
||||
# dispatch add arm64-development
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == true }},priority=300,prefix=,suffix=-development,value=arm64
|
||||
|
||||
# tag add tag-arm64
|
||||
type=ref,enable=${{ github.event_name == 'pull_request' || github.event_name == 'push' }},priority=600,prefix=,suffix=-arm64,event=tag
|
||||
flavor: |
|
||||
latest=false
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Checkpoint › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚠️ Checkpoint'
|
||||
id: task_release_dh_checkpoint
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.ref_name ...... ${{ github.ref_name }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "inputs.DRY_RUN ....... ${{ inputs.DRY_RUN }}"
|
||||
echo "env.AUTHOR ........... ${{ env.IMAGE_AUTHOR }}"
|
||||
echo "tags ................. ${{ steps.task_release_dh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_dh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Build and Push › Arm64
|
||||
# #
|
||||
|
||||
- name: '📦 Build & Push (linux/arm64)'
|
||||
id: task_release_dh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.DRY_RUN == false ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile.aarch64
|
||||
platforms: linux/arm64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_dh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_dh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Job › Docker Release › Dockerhub › Amd64
|
||||
# #
|
||||
|
||||
job-docker-release-dockerhub-amd64:
|
||||
name: >-
|
||||
📦 Release › Dockerhub › Amd64
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
needs: [ job-docker-release-tags-create, job-docker-release-dockerhub-arm64 ]
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Start › Amd64
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_dh_start
|
||||
run: |
|
||||
echo "Starting Dockerhub docker release"
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Checkout › Amd64
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_dh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Install Dependencies
|
||||
# #
|
||||
|
||||
- name: '📦 Install Dependencies'
|
||||
id: task_release_dh_dependencies
|
||||
run:
|
||||
sudo apt-get install -qq dos2unix
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Execute dos2unix
|
||||
# #
|
||||
|
||||
- name: '🔐 Apply dos2unix'
|
||||
id: task_release_dh_dos2unix
|
||||
run: |
|
||||
find ./ \( -path "./.git" -o -path "./docs" -o -path "./.github" -o -path "*.png" -o -path "*.jpg" \) -prune -o -name '*' -print | xargs dos2unix --
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_dh_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › QEMU › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Set up QEMU'
|
||||
id: task_release_dh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Setup BuildX › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Setup Buildx'
|
||||
id: task_release_dh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:latest'
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Registry Login › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Login to Dockerhub'
|
||||
id: task_release_dh_registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ env.IMAGE_DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.IMAGE_DOCKERHUB_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Meta › Amd64
|
||||
# #
|
||||
|
||||
- name: '🔨 Dockerhub: Meta - Amd64'
|
||||
id: task_release_dh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
# latest yes
|
||||
type=raw,value=latest,enable=${{ !inputs.DEV_RELEASE }}
|
||||
|
||||
# dispatch add x1.x.x-amd64
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == false }},priority=300,prefix=,suffix=-amd64,value=${{ env.IMAGE_VERSION }}
|
||||
|
||||
# dispatch add amd64-development
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == true }},priority=300,prefix=,suffix=-development,value=amd64
|
||||
|
||||
# tag add tag-arm64
|
||||
type=ref,enable=${{ github.event_name == 'pull_request' || github.event_name == 'push'}},priority=600,prefix=,suffix=-amd64,event=tag
|
||||
|
||||
# add development tag
|
||||
type=raw,enable=${{ inputs.DEV_RELEASE }},priority=400,prefix=,suffix=,value=development
|
||||
flavor: |
|
||||
latest=${{ !inputs.DEV_RELEASE }}
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Checkpoint › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚠️ Checkpoint'
|
||||
id: task_release_dh_checkpoint
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.ref_name ...... ${{ github.ref_name }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "inputs.DRY_RUN ....... ${{ inputs.DRY_RUN }}"
|
||||
echo "env.AUTHOR ........... ${{ env.IMAGE_AUTHOR }}"
|
||||
echo "tags ................. ${{ steps.task_release_dh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_dh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release › Dockerhub › Build and Push › Amd64
|
||||
# #
|
||||
|
||||
- name: '📦 Build & Push (linux/amd64)'
|
||||
id: task_release_dh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.DRY_RUN == false ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_dh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_dh_meta.outputs.labels }}
|
||||
674
.github/workflows/deploy-docker-github.yml
vendored
Normal file
674
.github/workflows/deploy-docker-github.yml
vendored
Normal file
@@ -0,0 +1,674 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
# @usage deploys docker container to github and send message to discord
|
||||
# upload this workflow to both the `main` branch of the tvapp repository
|
||||
# @secrets secrets.ADMINSERV_GPG_KEY_ASC gpg private key (armored) | BEGIN PGP PRIVATE KEY BLOCK
|
||||
# secrets.ADMINSERV_GPG_PASSPHRASE gpg private key passphrase
|
||||
# secrets.IMAGE_GHCR_TOKEN github personal access token (classic) with package:write permission
|
||||
# secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_RELEASES Discord webhook to report releases from github to discord
|
||||
# #
|
||||
|
||||
name: "📦 Deploy › Docker › Github"
|
||||
run-name: "📦 Deploy › Docker › Github"
|
||||
|
||||
# #
|
||||
# Triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
|
||||
# #
|
||||
# Trigger › Workflow Dispatch
|
||||
#
|
||||
# If any values are not provided, will use fallback env variable
|
||||
# #
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
# #
|
||||
# Image Name
|
||||
#
|
||||
# used in github image path
|
||||
# ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
# #
|
||||
|
||||
IMAGE_NAME:
|
||||
description: '📦 Image Name'
|
||||
required: true
|
||||
default: 'tvapp2'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image Author
|
||||
#
|
||||
# used in github image path
|
||||
# ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
# #
|
||||
|
||||
IMAGE_AUTHOR:
|
||||
description: '🪪 Image Author'
|
||||
required: true
|
||||
default: 'Aetherinox'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image Version
|
||||
#
|
||||
# used to create new release tag, and add version to docker image name
|
||||
# #
|
||||
|
||||
IMAGE_VERSION:
|
||||
description: '🏷️ Image Version'
|
||||
required: true
|
||||
default: '1.0.0'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# Image ghcr username
|
||||
#
|
||||
# this is the user to sign into ghcr as.
|
||||
# #
|
||||
|
||||
IMAGE_GHCR_USERNAME:
|
||||
description: '🪪 ghcr.io Username'
|
||||
required: true
|
||||
default: 'Aetherinox'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# true no changes to the repo will be made
|
||||
# false workflow will behave normally, and push any changes detected to the files
|
||||
# #
|
||||
|
||||
DRY_RUN:
|
||||
description: '🐛 Dry Run (Debug)'
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
# #
|
||||
# true released version will be marked as a development build and will have the v1.x.x-development tag instead of -latest
|
||||
# false release version will be marked with -latest docker tag
|
||||
# #
|
||||
|
||||
DEV_RELEASE:
|
||||
description: '🧪 Development Release'
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
# #
|
||||
# Trigger › Push
|
||||
# #
|
||||
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
# #
|
||||
# Environment Vars
|
||||
# #
|
||||
|
||||
env:
|
||||
IMAGE_NAME: ${{ github.event.inputs.IMAGE_NAME || 'tvapp2' }}
|
||||
IMAGE_AUTHOR: ${{ github.event.inputs.IMAGE_AUTHOR || 'Aetherinox' }}
|
||||
IMAGE_VERSION: ${{ github.event.inputs.IMAGE_VERSION || '1.0.0' }}
|
||||
IMAGE_GHCR_USERNAME: ${{ github.event.inputs.IMAGE_GHCR_USERNAME || 'Aetherinox' }}
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
# #
|
||||
# Jobs
|
||||
#
|
||||
# The way pushed docker containers on Github work, the most recent image built goes at the top.
|
||||
# We will use the order below which builds the :latest image last so that it appears at the very
|
||||
# top of the packages page.
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job › Create Tag
|
||||
# #
|
||||
|
||||
job-docker-release-tags-create:
|
||||
name: >-
|
||||
📦 Release › Create Tag
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Tags › Start
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_tags_start
|
||||
run: |
|
||||
echo "Creating Tag"
|
||||
|
||||
# #
|
||||
# Release › Tags › Checkout
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_tags_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Tags › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_tags_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Tags › Create Tag
|
||||
#
|
||||
# only called in dispatch mode
|
||||
# #
|
||||
|
||||
- uses: rickstaa/action-create-tag@v1
|
||||
id: task_release_tags_create
|
||||
if: ( github.event_name != 'workflow_dispatch' && inputs.DRY_RUN == false )
|
||||
with:
|
||||
tag: "${{ env.IMAGE_VERSION }}"
|
||||
tag_exists_error: false
|
||||
message: '${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}'
|
||||
gpg_private_key: ${{ secrets.ADMINSERV_GPG_KEY_ASC }}
|
||||
gpg_passphrase: ${{ secrets.ADMINSERV_GPG_PASSPHRASE }}
|
||||
|
||||
# #
|
||||
# Job › Docker Release › Github › Arm64
|
||||
# #
|
||||
|
||||
job-docker-release-github-arm64:
|
||||
name: >-
|
||||
📦 Release › Github › Arm64
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ job-docker-release-tags-create ]
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Github › Start › Arm64
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_gh_start
|
||||
run: |
|
||||
echo "Starting Github Docker arm64"
|
||||
|
||||
# #
|
||||
# Release › Get Timestamp
|
||||
# #
|
||||
|
||||
- name: '🕛 Get Timestamp'
|
||||
id: task_release_set_timestamp
|
||||
run: |
|
||||
echo "NOW=$(date +'%m-%d-%Y %H:%M:%S')" >> $GITHUB_ENV
|
||||
echo "NOW_SHORT=$(date +'%m-%d-%Y')" >> $GITHUB_ENV
|
||||
echo "NOW_LONG=$(date +'%m-%d-%Y %H:%M')" >> $GITHUB_ENV
|
||||
echo "NOW_DOCKER_LABEL=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Release › Github › Checkout › Arm64
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_gh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Github › Install Dependencies
|
||||
# #
|
||||
|
||||
- name: '📦 Install Dependencies'
|
||||
id: task_release_gh_dependencies
|
||||
run:
|
||||
sudo apt-get install -qq dos2unix
|
||||
|
||||
# #
|
||||
# Release › Github › Execute dos2unix
|
||||
# #
|
||||
|
||||
- name: '🔐 Apply dos2unix'
|
||||
id: task_release_gh_dos2unix
|
||||
run: |
|
||||
echo "⚠️⚠️⚠️ Running DOS2UNIX ⚠️⚠️⚠️"
|
||||
find ./ \( -path "./.git" -o -path "./docs" -o -path "./.github" -o -path "*.png" -o -path "*.jpg" \) -prune -o -name '*' -print | xargs dos2unix --
|
||||
echo "✅✅✅ Completed DOS2UNIX ✅✅✅"
|
||||
|
||||
# #
|
||||
# Release › Github › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_gh_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Github › QEMU › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Set up QEMU'
|
||||
id: task_release_gh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release › Github › Setup BuildX › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Setup Buildx'
|
||||
id: task_release_gh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:latest'
|
||||
|
||||
# #
|
||||
# Release › Github › Registry Login › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Login to Github'
|
||||
id: task_release_gh_registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ env.IMAGE_GHCR_USERNAME }}
|
||||
password: ${{ secrets.IMAGE_GHCR_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release › Github › Meta › Arm64
|
||||
# #
|
||||
|
||||
- name: '🔨 Github: Meta - Arm64'
|
||||
id: task_release_gh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
# latest no
|
||||
type=raw,value=latest,enable=false
|
||||
# dispatch add x1.x.x-arm64
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == false }},priority=300,prefix=,suffix=-arm64,value=${{ env.IMAGE_VERSION }}
|
||||
# dispatch add arm64-development
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == true }},priority=300,prefix=,suffix=-development,value=arm64
|
||||
# tag add tag-arm64
|
||||
type=ref,enable=${{ github.event_name == 'pull_request' || github.event_name == 'push' }},priority=600,prefix=,suffix=-arm64,event=tag
|
||||
flavor: |
|
||||
latest=false
|
||||
labels: |
|
||||
org.opencontainers.image.VERSION=${{ env.IMAGE_VERSION }}
|
||||
org.opencontainers.image.BUILDDATE=${{ env.NOW_DOCKER_LABEL }}
|
||||
org.opencontainers.image.licenses=MIT
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
org.opencontainers.image.vendor=${{ env.IMAGE_AUTHOR }}
|
||||
org.opencontainers.image.ref.name=${{ env.GIT_REF }}
|
||||
|
||||
# #
|
||||
# Release › Github › Checkpoint › Arm64
|
||||
# #
|
||||
|
||||
- name: '⚠️ Checkpoint'
|
||||
id: task_release_gh_checkpoint
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.ref_name ...... ${{ github.ref_name }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "inputs.DRY_RUN ....... ${{ inputs.DRY_RUN }}"
|
||||
echo "env.AUTHOR ........... ${{ env.IMAGE_AUTHOR }}"
|
||||
echo "tags ................. ${{ steps.task_release_gh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_gh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release › Github › Build and Push › Arm64
|
||||
# #
|
||||
|
||||
- name: '📦 Build & Push (linux/arm64)'
|
||||
id: task_release_gh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.DRY_RUN == false ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile.aarch64
|
||||
platforms: linux/arm64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Release › Get Weekly Commits
|
||||
# #
|
||||
|
||||
- name: '🕛 Get Weekly Commit List'
|
||||
id: task_release_set_weekly_commit_list
|
||||
run: |
|
||||
echo 'WEEKLY_COMMITS<<EOF' >> $GITHUB_ENV
|
||||
git log --format="[\`%h\`](${{ github.server_url }}/${{ github.repository }}/commit/%H) %s - %an" --since=7.days >> $GITHUB_ENV
|
||||
echo 'EOF' >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Release › Notify Github
|
||||
# #
|
||||
|
||||
- name: '🔔 Send Discord Webhook Message'
|
||||
uses: tsickert/discord-webhook@v6.0.0
|
||||
if: success()
|
||||
with:
|
||||
username: 'Io'
|
||||
avatar-url: 'https://i.imgur.com/8BVDkla.jpg'
|
||||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_RELEASES }}
|
||||
embed-title: "📦 **Deploy › Docker › Github Workflow Ran**"
|
||||
embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||
embed-thumbnail-url: 'https://i.imgur.com/zDIzE8T.jpg'
|
||||
embed-description: |
|
||||
## 📦 Docker › Deploy ${{ job.status == 'success' && '✅' || '❌' }} › `${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}`
|
||||
|
||||
A new version of the docker container `${{ env.IMAGE_NAME }}` has been released from Github. The image is available at:
|
||||
- https://github.com/${{ github.repository }}/pkgs/container/${{ env.IMAGE_NAME }}
|
||||
|
||||
- Docker Image: `${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}`
|
||||
- Version: `${{ env.IMAGE_VERSION }}`
|
||||
- Pull URL: https://ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
- Branch: `${{ github.ref_name }}`
|
||||
- Workflow: `${{ github.workflow }} (#${{github.run_number}})`
|
||||
- Triggered By: `${{ github.actor }}`
|
||||
|
||||
### Tags
|
||||
-# This docker image will use the following tags:
|
||||
|
||||
```
|
||||
${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
```
|
||||
|
||||
### Labels
|
||||
-# This docker image embeds the following labels:
|
||||
|
||||
```
|
||||
${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
```
|
||||
embed-color: ${{ job.status == 'success' && '5763719' || '15418782' }}
|
||||
embed-footer-text: "Completed at ${{ env.NOW }} UTC"
|
||||
embed-timestamp: "${{ env.NOW_LONG }}"
|
||||
embed-author-name: "${{ github.event.release.author.name }}"
|
||||
embed-author-url: "${{ github.event.release.author.html_url }}"
|
||||
embed-author-icon-url: "${{ github.event.release.author.avatar_url }}"
|
||||
|
||||
# #
|
||||
# Job › Docker Release › Github › Amd64
|
||||
# #
|
||||
|
||||
job-docker-release-github-amd64:
|
||||
name: >-
|
||||
📦 Release › Github › Amd64
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
needs: [ job-docker-release-tags-create, job-docker-release-github-arm64 ]
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release › Github › Start › Amd64
|
||||
# #
|
||||
|
||||
- name: '🏳️ Start'
|
||||
id: task_release_gh_start
|
||||
run: |
|
||||
echo "Starting Github docker release"
|
||||
|
||||
# #
|
||||
# Release › Get Timestamp
|
||||
# #
|
||||
|
||||
- name: '🕛 Get Timestamp'
|
||||
id: task_release_set_timestamp
|
||||
run: |
|
||||
echo "NOW=$(date +'%m-%d-%Y %H:%M:%S')" >> $GITHUB_ENV
|
||||
echo "NOW_SHORT=$(date +'%m-%d-%Y')" >> $GITHUB_ENV
|
||||
echo "NOW_LONG=$(date +'%m-%d-%Y %H:%M')" >> $GITHUB_ENV
|
||||
echo "NOW_DOCKER_LABEL=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Release › Github › Checkout › Amd64
|
||||
# #
|
||||
|
||||
- name: '✅ Checkout'
|
||||
id: task_release_gh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release › Github › Install Dependencies
|
||||
# #
|
||||
|
||||
- name: '📦 Install Dependencies'
|
||||
id: task_release_gh_dependencies
|
||||
run:
|
||||
sudo apt-get install -qq dos2unix
|
||||
|
||||
# #
|
||||
# Release › Github › Execute dos2unix
|
||||
# #
|
||||
|
||||
- name: '🔐 Apply dos2unix'
|
||||
id: task_release_gh_dos2unix
|
||||
run: |
|
||||
find ./ \( -path "./.git" -o -path "./docs" -o -path "./.github" -o -path "*.png" -o -path "*.jpg" \) -prune -o -name '*' -print | xargs dos2unix --
|
||||
|
||||
# #
|
||||
# Release › Github › Fix Permissions
|
||||
# #
|
||||
|
||||
- name: '#️⃣ Manage Permissions'
|
||||
id: task_release_gh_permissions
|
||||
run: |
|
||||
find ./ -name 'run' -exec chmod 755 {} \;
|
||||
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
|
||||
if [ -n "${WRONG_PERM}" ]; then
|
||||
echo "⚠️⚠️⚠️ Permissions are invalid ⚠️⚠️⚠️"
|
||||
for i in ${WRONG_PERM}; do
|
||||
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"
|
||||
done
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅✅ Executable permissions are OK ✅✅✅"
|
||||
fi
|
||||
|
||||
# #
|
||||
# Release › Github › QEMU › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Set up QEMU'
|
||||
id: task_release_gh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release › Github › Setup BuildX › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Setup Buildx'
|
||||
id: task_release_gh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:latest'
|
||||
|
||||
# #
|
||||
# Release › Github › Registry Login › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚙️ Login to Github'
|
||||
id: task_release_gh_registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ env.IMAGE_GHCR_USERNAME }}
|
||||
password: ${{ secrets.IMAGE_GHCR_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release › Github › Meta › Amd64
|
||||
# #
|
||||
|
||||
- name: '🔨 Github: Meta - Amd64'
|
||||
id: task_release_gh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
# latest yes
|
||||
type=raw,value=latest,enable=${{ !inputs.DEV_RELEASE }}
|
||||
# dispatch add x1.x.x-amd64
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == false }},priority=300,prefix=,suffix=-amd64,value=${{ env.IMAGE_VERSION }}
|
||||
# dispatch add amd64-development
|
||||
type=raw,enable=${{ github.event_name == 'workflow_dispatch' && inputs.DEV_RELEASE == true }},priority=300,prefix=,suffix=-development,value=amd64
|
||||
# tag add tag-arm64
|
||||
type=ref,enable=${{ github.event_name == 'pull_request' || github.event_name == 'push'}},priority=600,prefix=,suffix=-amd64,event=tag
|
||||
# add development tag
|
||||
type=raw,enable=${{ inputs.DEV_RELEASE }},priority=400,prefix=,suffix=,value=development
|
||||
flavor: |
|
||||
latest=${{ !inputs.DEV_RELEASE }}
|
||||
labels: |
|
||||
org.opencontainers.image.VERSION=${{ env.IMAGE_VERSION }}
|
||||
org.opencontainers.image.BUILDDATE=${{ env.NOW_DOCKER_LABEL }}
|
||||
org.opencontainers.image.licenses=MIT
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
org.opencontainers.image.vendor=${{ env.IMAGE_AUTHOR }}
|
||||
org.opencontainers.image.ref.name=${{ env.GIT_REF }}
|
||||
|
||||
# #
|
||||
# Release › Github › Checkpoint › Amd64
|
||||
# #
|
||||
|
||||
- name: '⚠️ Checkpoint'
|
||||
id: task_release_gh_checkpoint
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.ref_name ...... ${{ github.ref_name }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "inputs.DRY_RUN ....... ${{ inputs.DRY_RUN }}"
|
||||
echo "env.AUTHOR ........... ${{ env.IMAGE_AUTHOR }}"
|
||||
echo "tags ................. ${{ steps.task_release_gh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_gh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release › Github › Build and Push › Amd64
|
||||
# #
|
||||
|
||||
- name: '📦 Build & Push (linux/amd64)'
|
||||
id: task_release_gh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.DRY_RUN == false ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Release › Get Weekly Commits
|
||||
# #
|
||||
|
||||
- name: '🕛 Get Weekly Commit List'
|
||||
id: task_release_set_weekly_commit_list
|
||||
run: |
|
||||
echo 'WEEKLY_COMMITS<<EOF' >> $GITHUB_ENV
|
||||
git log --format="[\`%h\`](${{ github.server_url }}/${{ github.repository }}/commit/%H) %s - %an" --since=7.days >> $GITHUB_ENV
|
||||
echo 'EOF' >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Release › Notify Github
|
||||
# #
|
||||
|
||||
- name: '🔔 Send Discord Webhook Message'
|
||||
uses: tsickert/discord-webhook@v6.0.0
|
||||
if: success()
|
||||
with:
|
||||
username: 'Io'
|
||||
avatar-url: 'https://i.imgur.com/8BVDkla.jpg'
|
||||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_TVAPP2_RELEASES }}
|
||||
embed-title: "📦 **Deploy › Docker › Github Workflow Ran**"
|
||||
embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||
embed-thumbnail-url: 'https://i.imgur.com/zDIzE8T.jpg'
|
||||
embed-description: |
|
||||
## 📦 Docker › Deploy ${{ job.status == 'success' && '✅' || '❌' }} › `${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}`
|
||||
|
||||
A new version of the docker container `${{ env.IMAGE_NAME }}` has been released from Github. The image is available at:
|
||||
- https://github.com/${{ github.repository }}/pkgs/container/${{ env.IMAGE_NAME }}
|
||||
|
||||
- Docker Image: `${{ env.IMAGE_NAME }}-${{ env.IMAGE_VERSION }}`
|
||||
- Version: `${{ env.IMAGE_VERSION }}`
|
||||
- Pull URL: https://ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}
|
||||
- Branch: `${{ github.ref_name }}`
|
||||
- Workflow: `${{ github.workflow }} (#${{github.run_number}})`
|
||||
- Triggered By: `${{ github.actor }}`
|
||||
|
||||
### Tags
|
||||
-# This docker image will use the following tags:
|
||||
|
||||
```
|
||||
${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
```
|
||||
|
||||
### Labels
|
||||
-# This docker image embeds the following labels:
|
||||
|
||||
```
|
||||
${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
```
|
||||
embed-color: ${{ job.status == 'success' && '5763719' || '15418782' }}
|
||||
embed-footer-text: "Completed at ${{ env.NOW }} UTC"
|
||||
embed-timestamp: "${{ env.NOW_LONG }}"
|
||||
embed-author-name: "${{ github.event.release.author.name }}"
|
||||
embed-author-url: "${{ github.event.release.author.html_url }}"
|
||||
embed-author-icon-url: "${{ github.event.release.author.avatar_url }}"
|
||||
516
.github/workflows/deploy-docker.yml
vendored
516
.github/workflows/deploy-docker.yml
vendored
@@ -1,516 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc deploys docker container
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
# #
|
||||
|
||||
name: "⚙️ Deploy › Docker › Main"
|
||||
run-name: "⚙️ Deploy › Docker › Main"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
|
||||
# #
|
||||
# Trigger > Workflow Dispatch
|
||||
# #
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
IMAGE_NAME:
|
||||
description: "📦 Image Name"
|
||||
required: true
|
||||
default: 'thetvapp-docker'
|
||||
type: string
|
||||
|
||||
IMAGE_AUTHOR:
|
||||
description: "📦 Image Author"
|
||||
required: true
|
||||
default: 'aetherinox'
|
||||
type: string
|
||||
|
||||
# #
|
||||
# true: runs all actions, even ones not scheduled
|
||||
# false: only scheduled tasks will run
|
||||
# #
|
||||
|
||||
PRINT_ONLY:
|
||||
description: "📑 Print Debugs Only"
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
# #
|
||||
# Trigger > Push
|
||||
# #
|
||||
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
IMAGE_NAME: alpine-base
|
||||
IMAGE_AUTHOR: Aetherinox
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
#
|
||||
# The way pushed docker containers on Github work, the most recent image built goes at the top.
|
||||
# We will use the order below which builds the :latest image last so that it appears at the very
|
||||
# top of the packages page.
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job > Docker Release > Github
|
||||
# #
|
||||
|
||||
job-docker-release-github-php:
|
||||
name: >-
|
||||
📦 Release › Github › PHP
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release > Github > Start
|
||||
# #
|
||||
|
||||
- name: "✅ Start"
|
||||
id: task_release_gh_start
|
||||
run: |
|
||||
echo "Starting Github docker release for image PHP"
|
||||
|
||||
# #
|
||||
# Release > Github > Checkout
|
||||
# #
|
||||
|
||||
- name: "☑️ Checkout"
|
||||
id: task_release_gh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release > Github > QEMU
|
||||
# #
|
||||
|
||||
- name: "⚙️ Set up QEMU"
|
||||
id: task_release_gh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release > Github > Setup BuildX
|
||||
# #
|
||||
|
||||
- name: "⚙️ Setup Buildx"
|
||||
id: task_release_gh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:v0.10.5'
|
||||
|
||||
# #
|
||||
# Release > Github > Registry Login
|
||||
# #
|
||||
|
||||
- name: "⚙️ Login to Github"
|
||||
id: task_release_gh_registry
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.SELF_TOKEN_CL }}
|
||||
|
||||
# #
|
||||
# Release > Github > Meta
|
||||
# #
|
||||
|
||||
- name: "🔨 Docker meta"
|
||||
id: task_release_gh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}/docker-${{ inputs.IMAGE_NAME || env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=ref,enable=true,priority=600,prefix=,suffix=-php,event=tag
|
||||
flavor: |
|
||||
latest=false
|
||||
|
||||
# #
|
||||
# Release > Github > Debug
|
||||
# #
|
||||
|
||||
- name: "🪪 Debug › Print"
|
||||
id: task_release_gh_print
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "tags ................. ${{ steps.task_release_gh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_gh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release > Github > Build and Push
|
||||
# #
|
||||
|
||||
- name: "📦 Build and push"
|
||||
id: task_release_gh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile-php.template
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Job > Docker Release > Github
|
||||
# #
|
||||
|
||||
job-docker-release-dockerhub-php:
|
||||
name: >-
|
||||
📦 Release › Dockerhub › PHP
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Start
|
||||
# #
|
||||
|
||||
- name: "✅ Start"
|
||||
id: task_release_dh_start
|
||||
run: |
|
||||
echo "Starting Dockerhub Release"
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Checkout
|
||||
# #
|
||||
|
||||
- name: "☑️ Checkout"
|
||||
id: task_release_dh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > QEMU
|
||||
# #
|
||||
|
||||
- name: "⚙️ Set up QEMU"
|
||||
id: task_release_dh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Setup BuildX
|
||||
# #
|
||||
|
||||
- name: "⚙️ Setup Buildx"
|
||||
id: task_release_dh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:v0.10.5'
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Registry Login
|
||||
# #
|
||||
|
||||
- name: "⚙️ Login to DockerHub"
|
||||
id: task_release_dh_registry
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}
|
||||
password: ${{ secrets.SELF_DOCKERHUB_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Meta
|
||||
# #
|
||||
|
||||
- name: "🔨 Docker meta"
|
||||
id: task_release_dh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}/${{ inputs.IMAGE_NAME || env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=raw,value=latest,enable=false
|
||||
type=ref,enable=true,priority=600,prefix=,suffix=-php,event=tag
|
||||
flavor: |
|
||||
latest=false
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Debug
|
||||
# #
|
||||
|
||||
- name: "🪪 Debug › Print"
|
||||
id: task_release_dh_print
|
||||
run: |
|
||||
echo "registry ............. Dockerhub"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "tags ................. ${{ steps.task_release_dh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_dh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Build and Push
|
||||
# #
|
||||
|
||||
- name: "📦 Build and push"
|
||||
id: task_release_dh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile-php.template
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_dh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_dh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Job > Docker Release > Github
|
||||
# #
|
||||
|
||||
job-docker-release-github-main:
|
||||
name: >-
|
||||
📦 Release › Github › Main
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
needs: [ job-docker-release-github-php, job-docker-release-dockerhub-php ]
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release > Github > Start
|
||||
# #
|
||||
|
||||
- name: "✅ Start"
|
||||
id: task_release_gh_start
|
||||
run: |
|
||||
echo "Starting Github docker release"
|
||||
|
||||
# #
|
||||
# Release > Github > Checkout
|
||||
# #
|
||||
|
||||
- name: "☑️ Checkout"
|
||||
id: task_release_gh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release > Github > QEMU
|
||||
# #
|
||||
|
||||
- name: "⚙️ Set up QEMU"
|
||||
id: task_release_gh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release > Github > Setup BuildX
|
||||
# #
|
||||
|
||||
- name: "⚙️ Setup Buildx"
|
||||
id: task_release_gh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:v0.10.5'
|
||||
|
||||
# #
|
||||
# Release > Github > Registry Login
|
||||
# #
|
||||
|
||||
- name: "⚙️ Login to Github"
|
||||
id: task_release_gh_registry
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.SELF_TOKEN_CL }}
|
||||
|
||||
# #
|
||||
# Release > Github > Meta
|
||||
# #
|
||||
|
||||
- name: "🔨 Docker meta"
|
||||
id: task_release_gh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}/docker-${{ inputs.IMAGE_NAME || env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=raw,value=latest,enable=${{ endsWith(github.ref, 'main') }}
|
||||
type=ref,event=tag
|
||||
|
||||
# #
|
||||
# Release > Github > Debug
|
||||
# #
|
||||
|
||||
- name: "🪪 Debug › Print"
|
||||
id: task_release_gh_print
|
||||
run: |
|
||||
echo "registry ............. Github"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "tags ................. ${{ steps.task_release_gh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_gh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release > Github > Build and Push
|
||||
# #
|
||||
|
||||
- name: "📦 Build and push"
|
||||
id: task_release_gh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_gh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_gh_meta.outputs.labels }}
|
||||
|
||||
# #
|
||||
# Job > Docker Release > Github
|
||||
# #
|
||||
|
||||
job-docker-release-dockerhub-main:
|
||||
name: >-
|
||||
📦 Release › Dockerhub › Main
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
needs: [ job-docker-release-github-php, job-docker-release-dockerhub-php ]
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Start
|
||||
# #
|
||||
|
||||
- name: "✅ Start"
|
||||
id: task_release_dh_start
|
||||
run: |
|
||||
echo "Starting Github docker release"
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Checkout
|
||||
# #
|
||||
|
||||
- name: "☑️ Checkout"
|
||||
id: task_release_dh_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > QEMU
|
||||
# #
|
||||
|
||||
- name: "⚙️ Set up QEMU"
|
||||
id: task_release_dh_qemu
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Setup BuildX
|
||||
# #
|
||||
|
||||
- name: "⚙️ Setup Buildx"
|
||||
id: task_release_dh_buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
version: latest
|
||||
driver-opts: 'image=moby/buildkit:v0.10.5'
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Registry Login
|
||||
# #
|
||||
|
||||
- name: "⚙️ Login to DockerHub"
|
||||
id: task_release_dh_registry
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}
|
||||
password: ${{ secrets.SELF_DOCKERHUB_TOKEN }}
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Meta
|
||||
# #
|
||||
|
||||
- name: "🔨 Docker meta"
|
||||
id: task_release_dh_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ inputs.IMAGE_AUTHOR || env.IMAGE_AUTHOR }}/${{ inputs.IMAGE_NAME || env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=raw,value=latest,enable=${{ endsWith(github.ref, 'main') }}
|
||||
type=ref,event=tag
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Debug
|
||||
# #
|
||||
|
||||
- name: "🪪 Debug › Print"
|
||||
id: task_release_dh_print
|
||||
run: |
|
||||
echo "registry ............. Dockerhub"
|
||||
echo "github.actor.......... ${{ github.actor }}"
|
||||
echo "github.ref ........... ${{ github.ref }}"
|
||||
echo "github.event_name .... ${{ github.event_name }}"
|
||||
echo "tags ................. ${{ steps.task_release_dh_meta.outputs.tags }}"
|
||||
echo "labels ............... ${{ steps.task_release_dh_meta.outputs.labels }}"
|
||||
|
||||
# #
|
||||
# Release > Dockerhub > Build and Push
|
||||
# #
|
||||
|
||||
- name: "📦 Build & Push"
|
||||
id: task_release_dh_push
|
||||
uses: docker/build-push-action@v6
|
||||
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.task_release_dh_meta.outputs.tags }}
|
||||
labels: ${{ steps.task_release_dh_meta.outputs.labels }}
|
||||
72
.github/workflows/issues-accept.yml
vendored
72
.github/workflows/issues-accept.yml
vendored
@@ -1,72 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc adds a label to a PR when the command "/accept" is typed in the issue comments
|
||||
# do not attempt to use env variables in if condition.
|
||||
# do not accept to change GITHUB_TOKEN.
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
# #
|
||||
|
||||
name: "🎫 Issue › Accept"
|
||||
run-name: "🎫 Issue › Accept"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
LABEL_ACCEPT: "Status 𐄂 Accepted"
|
||||
|
||||
BOT_NAME_1: AdminServ
|
||||
BOT_NAME_2: AdminServX
|
||||
BOT_NAME_3: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job [ Deploy ]
|
||||
# #
|
||||
|
||||
deploy:
|
||||
if: contains(github.event.comment.body, '/accept') && github.event.comment.user.login == 'Aetherinox'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Add Label to accepted PR
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Assign Label › ${{ env.LABEL_ACCEPT }}
|
||||
run: gh issue edit "$NUMBER" --add-label "$LABELS"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_REPO: ${{ github.repository }}
|
||||
NUMBER: ${{ github.event.issue.number }}
|
||||
LABELS: ${{ env.LABEL_ACCEPT }}
|
||||
|
||||
# #
|
||||
# Add assignee to accepted PR
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Assign Assignee › ${{ github.repository_owner }}
|
||||
run: gh issue edit "$NUMBER" --add-assignee "$ASSIGNEE"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_REPO: ${{ github.repository }}
|
||||
NUMBER: ${{ github.event.issue.number }}
|
||||
ASSIGNEE: ${{ github.repository_owner }}
|
||||
891
.github/workflows/issues-new.yml
vendored
891
.github/workflows/issues-new.yml
vendored
@@ -1,891 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc searches a new issues title and body for certain keywords and assigns a label
|
||||
# sets the assignee for the issue to the repository owner
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
#
|
||||
# requires the following labels to be created in your repo:
|
||||
# - bug
|
||||
# - feature
|
||||
# - urgent
|
||||
# - roadmap
|
||||
# #
|
||||
|
||||
name: "🎫 Issue › New"
|
||||
run-name: "🎫 Issue › New › ${{ github.event.issue.number }}: ${{ github.event.issue.title }}"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- reopened
|
||||
- opened
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
PREFIX_BUG: "Bug"
|
||||
PREFIX_DEPENDENCY: "Dependency"
|
||||
PREFIX_DOCS: "Docs"
|
||||
PREFIX_FEATURE: "Feature"
|
||||
PREFIX_GIT: "Git Action"
|
||||
PREFIX_PR: "PR"
|
||||
PREFIX_ROADMAP: "Roadmap"
|
||||
PREFIX_INTERNAL: "Internal"
|
||||
PREFIX_URGENT: "Urgent"
|
||||
|
||||
LABEL_BUG: "Type ◦ Bug"
|
||||
LABEL_DEPENDENCY: "Type ◦ Dependency"
|
||||
LABEL_DOCS: "Type ◦ Docs"
|
||||
LABEL_FEATURE: "Type ◦ Feature"
|
||||
LABEL_GIT: "Type ◦ Git Action"
|
||||
LABEL_PR: "Type ◦ Pull Request"
|
||||
LABEL_ROADMAP: "Type ◦ Roadmap"
|
||||
LABEL_INTERNAL: "Type ◦ Git Action"
|
||||
LABEL_URGENT: "⚠ Urgent"
|
||||
|
||||
BOT_NAME_1: AdminServ
|
||||
BOT_NAME_2: AdminServX
|
||||
BOT_NAME_3: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
LABELS_JSON: |
|
||||
[
|
||||
{ "name": "AC › Changes Made", "color": "8F1784", "description": "Requested changes have been made and are pending a re-scan" },
|
||||
{ "name": "AC › Changes Required", "color": "8F1784", "description": "Requires changes to be made to the package before being accepted" },
|
||||
{ "name": "AC › Failed", "color": "a61f2d", "description": "Autocheck failed to run through a complete cycle, requires investigation" },
|
||||
{ "name": "AC › Needs Rebase", "color": "8F1784", "description": "Due to the permissions on the requesting repo, this pull request must be rebased by the author" },
|
||||
{ "name": "AC › Passed", "color": "146b4a", "description": "Ready to be reviewed" },
|
||||
{ "name": "AC › Review Required", "color": "8F1784", "description": "PR needs to be reviewed by another person, after the requested changes have been made" },
|
||||
{ "name": "AC › Security Warning", "color": "761620", "description": "Does not conform to developer policies, or includes potentially dangerous code" },
|
||||
{ "name": "AC › Skipped Scan", "color": "8F1784", "description": "Author has skipped code scan" },
|
||||
{ "name": "Status 𐄂 Duplicate", "color": "75536b", "description": "Issue or pull request already exists" },
|
||||
{ "name": "Status 𐄂 Accepted", "color": "2e7539", "description": "This pull request has been accepted" },
|
||||
{ "name": "Status 𐄂 Autoclosed", "color": "3E0915", "description": "Originally stale and was autoclosed for no activity" },
|
||||
{ "name": "Status 𐄂 Denied", "color": "ba4058", "description": "Pull request has been denied" },
|
||||
{ "name": "Status 𐄂 Locked", "color": "550F45", "description": "Automatically locked by AdminServ for a prolonged period of inactivity" },
|
||||
{ "name": "Status 𐄂 Need Info", "color": "2E3C4C", "description": "Not enough information to resolve" },
|
||||
{ "name": "Status 𐄂 No Action", "color": "030406", "description": "Closed without any action being taken" },
|
||||
{ "name": "Status 𐄂 Pending", "color": "984b12", "description": "Pending pull request" },
|
||||
{ "name": "Status 𐄂 Released", "color": "1b6626", "description": "Issues or PR has been implemented and is now live" },
|
||||
{ "name": "Status 𐄂 Reopened", "color": "8a6f14", "description": "A previously closed PR which has been re-opened" },
|
||||
{ "name": "Status 𐄂 Review", "color": "9e1451", "description": "Currently pending review" },
|
||||
{ "name": "Status 𐄂 Stale", "color": "928282", "description": "Has not had any activity in over 30 days" },
|
||||
{ "name": "Type ◦ Bug", "color": "9a2c2c", "description": "Something isn't working" },
|
||||
{ "name": "Type ◦ Dependency", "color": "243759", "description": "Item is associated to dependency" },
|
||||
{ "name": "Type ◦ Docs", "color": "0e588d", "description": "Improvements or modifications to docs" },
|
||||
{ "name": "Type ◦ Feature", "color": "3c4e93", "description": "Feature request" },
|
||||
{ "name": "Type ◦ Git Action", "color": "030406", "description": "GitHub Action / workflow" },
|
||||
{ "name": "Type ◦ Pull Request", "color": "8F1784", "description": "Normal pull request" },
|
||||
{ "name": "Type ◦ Roadmap", "color": "8F1784", "description": "Feature or bug currently planned for implementation" },
|
||||
{ "name": "Type ◦ Internal", "color": "A51994", "description": "Assigned items are for internal developer use" },
|
||||
{ "name": "Build ◦ Desktop", "color": "c7ca4a", "description": "Specific to desktop" },
|
||||
{ "name": "Build ◦ Linux", "color": "c7ca4a", "description": "Specific to Linux" },
|
||||
{ "name": "Build ◦ MacOS", "color": "c7ca4a", "description": "Specific to MacOS" },
|
||||
{ "name": "Build ◦ Mobile", "color": "c7ca4a", "description": "Specific to mobile" },
|
||||
{ "name": "Build ◦ Web", "color": "c7ca4a", "description": "Specific to web" },
|
||||
{ "name": "Build ◦ Windows", "color": "c7ca4a", "description": "Specific to Windows" },
|
||||
{ "name": "› API", "color": "F99B50", "description": "Plugin API, CLI, browser JS API" },
|
||||
{ "name": "› Auto-type", "color": "9141E0", "description": "Auto-type functionality in desktop apps" },
|
||||
{ "name": "› Browser", "color": "9141E0", "description": "Browser plugins and passing data to <=> from app" },
|
||||
{ "name": "› Customization", "color": "E3F0FC", "description": "Customizations: plugins, themes, configs" },
|
||||
{ "name": "› Design", "color": "FA70DE", "description": "Design related queries" },
|
||||
{ "name": "› Dist", "color": "FA70DE", "description": "Installers and other forms of software distribution" },
|
||||
{ "name": "› Enterprise", "color": "11447a", "description": "Issues about collaboration, administration, and so on" },
|
||||
{ "name": "› Hardware", "color": "5a7503", "description": "YubiKey, other tokens, biometrics" },
|
||||
{ "name": "› Import/Export", "color": "F5FFCC", "description": "Import from and export to different file formats" },
|
||||
{ "name": "› Improvement", "color": "185c98", "description": "Enhance an existing feature" },
|
||||
{ "name": "› Performance", "color": "006b75", "description": "Web and desktop performance issues" },
|
||||
{ "name": "› Plugin Request", "color": "FCE9CA", "description": "Requested changes should be implemented as a plugin" },
|
||||
{ "name": "› Security", "color": "F75D39", "description": "Security issues" },
|
||||
{ "name": "› Self-Hosting", "color": "fad8c7", "description": "Self-hosting installations and configs" },
|
||||
{ "name": "› Storage", "color": "5319e7", "description": "Storage providers: Dropbox, Google, WebDAV, etc." },
|
||||
{ "name": "› Updater", "color": "1BADDE", "description": "Auto-updater issues" },
|
||||
{ "name": "› UX", "color": "1BADDE", "description": "UX and usability" },
|
||||
{ "name": "› Website", "color": "fef2c0", "description": "Website related issues" },
|
||||
{ "name": "⚠ Urgent", "color": "a8740e", "description": "Requires urgent attention" },
|
||||
{ "name": "⚠ Announcement", "color": "DB4712", "description": "Announcements" },
|
||||
{ "name": "📰 Progress Report", "color": "392297", "description": "Development updates" },
|
||||
{ "name": "📦 Release", "color": "277542", "description": "Release announcements" },
|
||||
{ "name": "✔️ Poll", "color": "972255", "description": "Community polls" },
|
||||
{ "name": "❔ Question", "color": "FFFFFF", "description": "All questions" }
|
||||
]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job [ Verify / Create Labels ]
|
||||
#
|
||||
# This job will ensure you have labels already created in your repo.
|
||||
# All labels come from the JSON table LABELS_JSON.
|
||||
# #
|
||||
|
||||
job-labels-create:
|
||||
name: >-
|
||||
🎫 Labels › Verify Existing
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✅ Start
|
||||
id: task_label_create_start
|
||||
run: |
|
||||
echo "Assigning labels and assignees"
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Checkout
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
☑️ Checkout
|
||||
id: task_label_create_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Verify Existing Labels
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Verify Existing Labels
|
||||
id: task_label_create_verify
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const labels = JSON.parse( process.env.LABELS_JSON );
|
||||
for ( const label of labels )
|
||||
{
|
||||
try
|
||||
{
|
||||
await github.rest.issues.createLabel(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: label.name,
|
||||
description: label.description || '',
|
||||
color: label.color
|
||||
});
|
||||
}
|
||||
catch ( err )
|
||||
{
|
||||
if ( err.status === 422 )
|
||||
{
|
||||
console.log( `Label '${label.name}' already exists. Skipping.` );
|
||||
}
|
||||
else
|
||||
{
|
||||
console.error( `Error creating label '${label.name}': ${err}` );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# #
|
||||
# Job [ Assign Labels ]
|
||||
# #
|
||||
|
||||
job-assign-labels:
|
||||
name: >-
|
||||
🏷️ Labels › Assign
|
||||
needs:
|
||||
- job-labels-create
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: 'read'
|
||||
id-token: 'write'
|
||||
issues: 'write'
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Assign > Get Issue Title
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Get Issue Title
|
||||
uses: actions/github-script@v7
|
||||
id: task_get_title
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
let iss_title = `${ context.payload.issue.title }`;
|
||||
|
||||
core.setOutput( 'issue_title', iss_title )
|
||||
core.info( `Setting env issue title: ${ iss_title }` )
|
||||
|
||||
console.log( "\n\n" )
|
||||
|
||||
# #
|
||||
# Labels > Bugs
|
||||
#
|
||||
# Title of issue is carried over from the previous step.
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ ${{ env.PREFIX_BUG }} › Assignment
|
||||
uses: actions/github-script@v7
|
||||
id: task_issues_bugs
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
|
||||
const issueLabels = await github.rest.issues.listLabelsOnIssue(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: context.issue.number
|
||||
});
|
||||
|
||||
let add_labels = issueLabels.data.map( label => label.name );
|
||||
|
||||
let iss_title = `${{ steps.task_get_title.outputs.issue_title }}` || `${ context.payload.issue.title }`;
|
||||
let iss_body = `${ context.payload.issue.body }`;
|
||||
let iss_author = `${ context.payload.issue.user.login }`;
|
||||
|
||||
const iss_title_lc = iss_title.toLowerCase( );
|
||||
|
||||
console.log( "Bug Title ..................... " + iss_title )
|
||||
console.log( "Bug Output .................... " + `${{ steps.task_get_title.outputs.issue_title }}` )
|
||||
console.log( "Bug Payload ................... " + `${ context.payload.issue.title }` )
|
||||
|
||||
/*
|
||||
Tags
|
||||
*/
|
||||
|
||||
const bug_tag = `${{ env.PREFIX_BUG }}:`;
|
||||
const bug_lbl = `${{ env.LABEL_BUG }}`;
|
||||
const feat_tag = `${{ env.PREFIX_FEATURE }}:`;
|
||||
const feat_lbl = `${{ env.LABEL_FEATURE }}`;
|
||||
const urgn_tag = `${{ env.PREFIX_URGENT }}:`;
|
||||
const urgn_lbl = `${{ env.LABEL_URGENT }}`;
|
||||
const road_tag = `${{ env.PREFIX_ROADMAP }}:`;
|
||||
const road_lbl = `${{ env.LABEL_ROADMAP }}`;
|
||||
|
||||
/*
|
||||
Bugs
|
||||
*/
|
||||
|
||||
const words = [ "bug", "broke", "issue", "fail" ];
|
||||
const bTriggerWordInTitle = words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/Z99Gnq/2
|
||||
*/
|
||||
|
||||
const findWordList = /^\b(?:I?\s*have\s*(?:a|an)\s*(?:issue|problem|bug))|(?:will\s*not\s*work)|(?:it\s*is\s*(?:broken|broke|stuck))|(?:found\s*(?:an?|the)\s*(?:bug|issue))|(?:can\s*I\s*fix\s*the\s*(?:bug|issue))|(?:(?:does not|doesn'?t|don'?t|won'?t|can'?t|can\s?not|will\s*not)\s*(?:work|load|function))|(?:it\s*(?:will\s?not|won'?t|can\s?not|can'?t))\s*(?:get|find)\s*the\s*(?:website|site|webpage|page)|(?:the\s*(?:window|frame)\s*is\s*(?:blank|white|empty|missing))\b$/igm;
|
||||
const bFoundMatchTitle = Boolean( findWordList.test( iss_title ) );
|
||||
const bFoundMatchBody = Boolean( findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const bug_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const bug_bFoundPRTitle = Boolean( bug_findPRTitle.test( iss_title ) );
|
||||
|
||||
console.log( "Title Lowercase ............... " + iss_title_lc )
|
||||
console.log( "Startswith " + bug_tag.toLowerCase( ) + "................ " + iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) )
|
||||
console.log( "Title Includes Keyword ........ " + bTriggerWordInTitle )
|
||||
console.log( "Title Includes Regex .......... " + bFoundMatchTitle )
|
||||
console.log( "Body Includes Regex ........... " + bFoundMatchBody )
|
||||
console.log( "\n" )
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Bug:"
|
||||
- Check if title contains word in words
|
||||
*/
|
||||
|
||||
if ( iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) || bTriggerWordInTitle || bFoundMatchTitle || bFoundMatchBody )
|
||||
{
|
||||
|
||||
console.log( "⚠️ " + bug_tag + " ---------------------------------------" )
|
||||
console.log( "Already starts with " + bug_tag + " ......... " + iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + feat_tag + " ..... " + iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + urgn_tag + " ...... " + iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + road_tag + " ..... " + iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
|
||||
add_labels.push( `${ bug_lbl }` );
|
||||
|
||||
console.log( `Adding Tag ....................... ${ bug_lbl }` )
|
||||
console.log( "\n" )
|
||||
|
||||
if ( iss_author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ iss_author }` )
|
||||
|
||||
// Rename title to contain Bug:
|
||||
// Make sure issue / pr title doesnt already contain a beginning title tag
|
||||
|
||||
if ( iss_author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !bug_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
console.log( "Renaming Title" )
|
||||
console.log( `Old Title: .................. ${ iss_title }` )
|
||||
|
||||
const title = context.payload.issue.title
|
||||
let title_new = title.replace( /^\s?bug\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?fail\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?issue\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ bug_tag } ${ title_new }`;
|
||||
}
|
||||
|
||||
console.log( `New Title: ...................... ${ iss_title }` )
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
core.setOutput( 'issue_title', iss_title )
|
||||
console.log( "\n\n" )
|
||||
|
||||
# #
|
||||
# Labels > Features
|
||||
#
|
||||
# Title of issue is carried over from the previous step.
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ ${{ env.PREFIX_FEATURE }} › Assignment
|
||||
uses: actions/github-script@v7
|
||||
id: task_issues_features
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
|
||||
const issueLabels = await github.rest.issues.listLabelsOnIssue(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: context.issue.number
|
||||
});
|
||||
|
||||
let add_labels = issueLabels.data.map( label => label.name );
|
||||
|
||||
let iss_title = `${{ steps.task_issues_bugs.outputs.issue_title }}` || `${ context.payload.issue.title }`;
|
||||
let iss_body = `${ context.payload.issue.body }`;
|
||||
|
||||
const iss_title_lc = iss_title.toLowerCase( );
|
||||
|
||||
console.log( "Feat Title .................... " + iss_title )
|
||||
console.log( "Feat Output ................... " + `${{ steps.task_issues_bugs.outputs.issue_title }}` )
|
||||
console.log( "Feat Payload .................. " + `${ context.payload.issue.title }` )
|
||||
|
||||
/*
|
||||
Tags
|
||||
*/
|
||||
|
||||
const bug_tag = `${{ env.PREFIX_BUG }}:`;
|
||||
const bug_lbl = `${{ env.LABEL_BUG }}`;
|
||||
const feat_tag = `${{ env.PREFIX_FEATURE }}:`;
|
||||
const feat_lbl = `${{ env.LABEL_FEATURE }}`;
|
||||
const urgn_tag = `${{ env.PREFIX_URGENT }}:`;
|
||||
const urgn_lbl = `${{ env.LABEL_URGENT }}`;
|
||||
const road_tag = `${{ env.PREFIX_ROADMAP }}:`;
|
||||
const road_lbl = `${{ env.LABEL_ROADMAP }}`;
|
||||
|
||||
/*
|
||||
Features
|
||||
*/
|
||||
|
||||
const words = [ "feature", "request", "add support" ];
|
||||
const bTriggerWordInTitle = words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/fR1Hm6/1
|
||||
*/
|
||||
|
||||
const findWordList = /^(?:(?:request|include|see)\s*(?:an?|the?)\s*(?:feature|addon|addition|plugin))|(?:(?:add|see|get)\s*support\s*(?:for|with|of))|(?:can\s*we\s*get\s*(?:the|a)\s*(?:ability|feature))|(?:💡 Feature:)$/igm;
|
||||
const bFoundMatchTitle = Boolean( findWordList.test( iss_title ) );
|
||||
const bFoundMatchBody = Boolean( findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const feat_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const feat_bFoundPRTitle = Boolean( feat_findPRTitle.test( iss_title ) );
|
||||
|
||||
console.log( "Title Lowercase ............... " + iss_title_lc )
|
||||
console.log( "Startswith " + feat_tag.toLowerCase( ) + "............ " + iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) )
|
||||
console.log( "Title Includes Keyword ........ " + bTriggerWordInTitle )
|
||||
console.log( "Title Includes Regex .......... " + bFoundMatchTitle )
|
||||
console.log( "Body Includes Regex ........... " + bFoundMatchBody )
|
||||
console.log( "\n" )
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Feature:"
|
||||
- Check if title contains word in words
|
||||
*/
|
||||
|
||||
// change TAG per category
|
||||
if ( iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) || bTriggerWordInTitle || bFoundMatchTitle || bFoundMatchBody )
|
||||
{
|
||||
|
||||
console.log( "⚠️ " + feat_tag + " ---------------------------------------" )
|
||||
console.log( "Already starts with " + bug_tag + " ......... " + iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + feat_tag + " ..... " + iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + urgn_tag + " ...... " + iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + road_tag + " ..... " + iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
|
||||
// change LBL per category
|
||||
add_labels.push( `${ feat_lbl }` );
|
||||
|
||||
console.log( `Adding Tag ....................... ${ feat_lbl }` )
|
||||
console.log( "\n" )
|
||||
|
||||
if ( iss_author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ iss_author }` )
|
||||
|
||||
// Rename title to contain Feature:
|
||||
// Make sure issue / pr title doesnt already contain a beginning title tag
|
||||
|
||||
if ( iss_author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !feat_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
console.log( "Renaming Title" )
|
||||
console.log( `Old Title: .................. ${ iss_title }` )
|
||||
|
||||
const title = context.payload.issue.title
|
||||
let title_new = title.replace( /^\s?feature\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?request\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?add(.*?)\s?feature\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?add(.*?)\s?support\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ feat_tag } ${ title_new }`; // change TAG per category
|
||||
}
|
||||
|
||||
console.log( `New Title: ...................... ${ iss_title }` )
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
core.setOutput( 'issue_title', iss_title )
|
||||
console.log( "\n\n" )
|
||||
|
||||
# #
|
||||
# Labels > Urgent
|
||||
#
|
||||
# Title of issue is carried over from the previous step.
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ ${{ env.PREFIX_URGENT }} › Assignment
|
||||
uses: actions/github-script@v7
|
||||
id: task_issues_urgent
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const issueLabels = await github.rest.issues.listLabelsOnIssue(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: context.issue.number
|
||||
});
|
||||
|
||||
let add_labels = issueLabels.data.map( label => label.name );
|
||||
|
||||
let iss_title = `${{ steps.task_issues_features.outputs.issue_title }}` || `${ context.payload.issue.title }`;
|
||||
let iss_body = `${ context.payload.issue.body }`;
|
||||
|
||||
const iss_title_lc = iss_title.toLowerCase( );
|
||||
|
||||
console.log( "Urgn Title .................... " + iss_title )
|
||||
console.log( "Urgn Output ................... " + `${{ steps.task_issues_features.outputs.issue_title }}` )
|
||||
console.log( "Urgn Payload .................. " + `${ context.payload.issue.title }` )
|
||||
|
||||
/*
|
||||
Tags
|
||||
*/
|
||||
|
||||
const bug_tag = `${{ env.PREFIX_BUG }}:`;
|
||||
const bug_lbl = `${{ env.LABEL_BUG }}`;
|
||||
const feat_tag = `${{ env.PREFIX_FEATURE }}:`;
|
||||
const feat_lbl = `${{ env.LABEL_FEATURE }}`;
|
||||
const urgn_tag = `${{ env.PREFIX_URGENT }}:`;
|
||||
const urgn_lbl = `${{ env.LABEL_URGENT }}`;
|
||||
const road_tag = `${{ env.PREFIX_ROADMAP }}:`;
|
||||
const road_lbl = `${{ env.LABEL_ROADMAP }}`;
|
||||
|
||||
/*
|
||||
Urgent
|
||||
*/
|
||||
|
||||
const words = [ "urgent", "urgency", "emergency", "important", "critical" ];
|
||||
const bTriggerWordInTitle = words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/eE9tJX/2
|
||||
*/
|
||||
|
||||
const findWordList = /(?:(?:this)?is\s*a?n?\s*?(?:emergency|urgent|important|vital|acute|crucial|grave|pressing|serious|top.?priority|high.?priority))|(?:reply|respond|answer|write|address)\s*(?:immediate|quick|asap|urgent|now|fast|(?:as)?\s*(?:soon|quick|immediate|fast))(?:ly)?|(?:need\s*(?:help|support|fixed|answer|reply|response)!)|(?:emergency|critical|urgen(?:t|cy)|high.?priority)/igm;
|
||||
const bFoundMatchTitle = Boolean( findWordList.test( iss_title ) );
|
||||
const bFoundMatchBody = Boolean( findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const urgn_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const urgn_bFoundPRTitle = Boolean( urgn_findPRTitle.test( iss_title ) );
|
||||
|
||||
console.log( "Title Lowercase ............... " + iss_title_lc )
|
||||
console.log( "Startswith " + urgn_tag.toLowerCase( ) + "............. " + iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) )
|
||||
console.log( "Title Includes Keyword ........ " + bTriggerWordInTitle )
|
||||
console.log( "Title Includes Regex .......... " + bFoundMatchTitle )
|
||||
console.log( "Body Includes Regex ........... " + bFoundMatchBody )
|
||||
console.log( "\n" )
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Urgent:"
|
||||
- Check if title contains word in words
|
||||
*/
|
||||
|
||||
// change TAG per category
|
||||
if ( iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) || bTriggerWordInTitle || bFoundMatchTitle || bFoundMatchBody )
|
||||
{
|
||||
|
||||
console.log( "⚠️ " + urgn_tag + " ---------------------------------------" )
|
||||
console.log( "Already starts with " + bug_tag + " ......... " + iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + feat_tag + " ..... " + iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + urgn_tag + " ...... " + iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + road_tag + " ..... " + iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
|
||||
// change LBL per category
|
||||
add_labels.push( `${ urgn_lbl }` );
|
||||
|
||||
console.log( `Adding Tag ....................... ${ urgn_lbl }` )
|
||||
console.log( "\n" )
|
||||
|
||||
if ( iss_author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ iss_author }` )
|
||||
|
||||
// Rename title to contain Urgent:
|
||||
// Make sure issue / pr title doesnt already contain a beginning title tag
|
||||
|
||||
if ( iss_author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !urgn_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
console.log( "Renaming Title" )
|
||||
console.log( `Old Title: .................. ${ iss_title }` )
|
||||
|
||||
const title = context.payload.issue.title
|
||||
let title_new = title.replace( /^\s?emergency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgent\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?important\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?critical\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ urgn_tag } ${ title_new }`; // change TAG per category
|
||||
}
|
||||
|
||||
console.log( `New Title: ...................... ${ iss_title }` )
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
core.setOutput( 'issue_title', iss_title )
|
||||
console.log( "\n\n" )
|
||||
|
||||
# #
|
||||
# Labels > Roadmap
|
||||
#
|
||||
# Title of issue is carried over from the previous step.
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ ${{ env.PREFIX_ROADMAP }} › Assignment
|
||||
uses: actions/github-script@v7
|
||||
id: task_issues_roadmap
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const issueLabels = await github.rest.issues.listLabelsOnIssue(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
issue_number: context.issue.number
|
||||
});
|
||||
|
||||
let add_labels = issueLabels.data.map( label => label.name );
|
||||
|
||||
let iss_title = `${{ steps.task_issues_urgent.outputs.issue_title }}` || `${ context.payload.issue.title }`;
|
||||
let iss_body = `${ context.payload.issue.body }`;
|
||||
|
||||
const iss_title_lc = iss_title.toLowerCase( );
|
||||
|
||||
console.log( "Road Title .................... " + iss_title )
|
||||
console.log( "Road Output ................... " + `${{ steps.task_issues_urgent.outputs.issue_title }}` )
|
||||
console.log( "Road Payload .................. " + `${ context.payload.issue.title }` )
|
||||
|
||||
/*
|
||||
Tags
|
||||
*/
|
||||
|
||||
const bug_tag = `${{ env.PREFIX_BUG }}:`;
|
||||
const bug_lbl = `${{ env.LABEL_BUG }}`;
|
||||
const feat_tag = `${{ env.PREFIX_FEATURE }}:`;
|
||||
const feat_lbl = `${{ env.LABEL_FEATURE }}`;
|
||||
const urgn_tag = `${{ env.PREFIX_URGENT }}:`;
|
||||
const urgn_lbl = `${{ env.LABEL_URGENT }}`;
|
||||
const road_tag = `${{ env.PREFIX_ROADMAP }}:`;
|
||||
const road_lbl = `${{ env.LABEL_ROADMAP }}`;
|
||||
|
||||
/*
|
||||
Roadmap
|
||||
*/
|
||||
|
||||
const words = [ "roadmap", "road map", "planned" ];
|
||||
const bTriggerWordInTitle = words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
Roadmap requires headers #Summary and #Proposal | #Objective
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/ucajBZ/1
|
||||
*/
|
||||
|
||||
const findWordList = /#\s*Summary[\S\s]+#\s*(?:Proposal|Objective)[^\]]+/igm;
|
||||
const bFoundMatchTitle = Boolean( findWordList.test( iss_title ) );
|
||||
const bFoundMatchBody = Boolean( findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const road_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const road_bFoundPRTitle = Boolean( road_findPRTitle.test( iss_title ) );
|
||||
|
||||
console.log( "Title Lowercase ............... " + iss_title_lc )
|
||||
console.log( "Startswith " + road_tag.toLowerCase( ) + "............ " + iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
console.log( "Title Includes Keyword ........ " + bTriggerWordInTitle )
|
||||
console.log( "Title Includes Regex .......... " + bFoundMatchTitle )
|
||||
console.log( "Body Includes Regex ........... " + bFoundMatchBody )
|
||||
console.log( "\n" )
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Roadmap:"
|
||||
- Check if title contains word in words
|
||||
*/
|
||||
|
||||
// change TAG per category
|
||||
if ( iss_title_lc.startsWith( road_tag.toLowerCase( ) ) || bTriggerWordInTitle || bFoundMatchTitle || bFoundMatchBody )
|
||||
{
|
||||
|
||||
console.log( "⚠️ " + road_tag + " ---------------------------------------" )
|
||||
console.log( "Already starts with " + bug_tag + " ...... " + iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + feat_tag + " .. " + iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + urgn_tag + " ... " + iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) )
|
||||
console.log( "Already starts with " + road_tag + " .. " + iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
|
||||
// change LBL per category
|
||||
add_labels.push( `${ road_lbl }` );
|
||||
|
||||
console.log( `Adding Tag .................... ${ road_lbl }` )
|
||||
console.log( "\n" )
|
||||
|
||||
if ( iss_author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ iss_author }` )
|
||||
|
||||
// Rename title to contain Roadmap:
|
||||
// Make sure issue / pr title doesnt already contain a beginning title tag
|
||||
|
||||
if ( iss_author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !road_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
console.log( "Renaming Title" )
|
||||
console.log( `Old Title: .................. ${ iss_title }` )
|
||||
|
||||
const title = context.payload.issue.title
|
||||
let title_new = title.replace( /^\s?broad(.*?)\s?map\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?planned\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?broadmap\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ road_tag } ${ title_new }`; // change TAG per category
|
||||
}
|
||||
|
||||
console.log( `New Title: .................... ${ iss_title }` )
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
core.setOutput( 'issue_title', iss_title )
|
||||
console.log( "\n\n" )
|
||||
|
||||
# #
|
||||
# Job > Phrase Search
|
||||
#
|
||||
# Checks a message for certain keywords and then responds to the user as a reply / comment
|
||||
# #
|
||||
|
||||
job-phrase-search:
|
||||
name: >-
|
||||
🏷️ Labels › Phrase Search
|
||||
needs:
|
||||
- job-labels-create
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: 'read'
|
||||
id-token: 'write'
|
||||
issues: 'write'
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Search Phrase ] Checkout
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
☑️ Prepare
|
||||
id: issues-labels-check-checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Search Phrase ] Search
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
👄 Search Phrases
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const fs = require( 'fs' );
|
||||
const iss_title = `${ context.payload.issue.title }`;
|
||||
const iss_body = `${ context.payload.issue.body }`;
|
||||
let message = [ "\n<br />\n" ]
|
||||
let bHasMessage = false
|
||||
|
||||
/*********************************************
|
||||
Keyword > Help
|
||||
**********************************************/
|
||||
|
||||
let HE_message =
|
||||
`
|
||||
💡 It appears you might need help, please check the resources below for documentation that might assist with your issue:
|
||||
- [Documentation](${{github.event.repository.url}})
|
||||
|
||||
---
|
||||
|
||||
<sub>I am a bot reaching out to you with an automated response. If the above info doesn't apply to you, please ignore it.</sub>
|
||||
`;
|
||||
|
||||
/*
|
||||
found searched word "for help"
|
||||
append / prepare message for bot to send
|
||||
*/
|
||||
|
||||
const HEfindWordList = /^\b(?:have\s*(?:a|some)?\s*question*s?)|(?:can\s*you\s*(?:tell|help)\s*me)|(?:need\s*(?:some)?\s*(?:help|assistance|guidance))|(?:how\s*can\s*I\s*find)|(?:point\s*me\s*in\s*the\s*direction)|(?:where\s*can\s*I\s*find)|(?:where\s*(?:\N*)\s*(?:\N*)\s*find)|(?:please\s*help)|(?:where\s*\N*\s*(?:located|at))|(?:documentation)\b$/igm;
|
||||
const HEbFoundMatchTitle = Boolean( HEfindWordList.test( iss_title ) );
|
||||
const HEbFoundMatchBody = Boolean( HEfindWordList.test( iss_body ) );
|
||||
|
||||
if ( HEbFoundMatchTitle || HEbFoundMatchBody )
|
||||
{
|
||||
message.push ( HE_message );
|
||||
bHasMessage = true;
|
||||
}
|
||||
|
||||
/*
|
||||
Bot has message to send
|
||||
*/
|
||||
|
||||
if ( bHasMessage == true )
|
||||
{
|
||||
await github.rest.issues.createComment(
|
||||
{
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: message.join('\n'),
|
||||
} );
|
||||
}
|
||||
|
||||
# #
|
||||
# Job > Add Assignees
|
||||
# #
|
||||
|
||||
job-assign-assignees:
|
||||
name: >-
|
||||
✍️ Issue › Assignees
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ job-assign-labels ]
|
||||
if: |
|
||||
always()
|
||||
&& contains( needs.*.result, 'success' )
|
||||
&& !contains( needs.*.result, 'failure' )
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Assignees] Assign
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✍️ Set Assignees
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const assignees = [ `${{ github.repository_owner }}` ];
|
||||
|
||||
if ( assignees.length > 0 )
|
||||
{
|
||||
try
|
||||
{
|
||||
await github.rest.issues.addAssignees(
|
||||
{
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
assignees
|
||||
});
|
||||
}
|
||||
catch ( error )
|
||||
{
|
||||
core.setFailed( error.message );
|
||||
}
|
||||
}
|
||||
1361
.github/workflows/issues-scan.yml
vendored
1361
.github/workflows/issues-scan.yml
vendored
File diff suppressed because it is too large
Load Diff
667
.github/workflows/issues-stale.yml
vendored
667
.github/workflows/issues-stale.yml
vendored
@@ -1,667 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc creates repository labels if they are not yet installed
|
||||
# issues marked as stale after 30 days, given tag Status 𐄂 Stale
|
||||
# inactive issues closed after 180 days, given tag Status 𐄂 Locked
|
||||
# inactive pr closed after 365 days, given tag Status 𐄂 Locked
|
||||
# issues marked stale after 30 days, given tag Status 𐄂 Stale
|
||||
# issues marked closed 7 days after being marked stale, given tag Status 𐄂 Autoclosed
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
#
|
||||
# This Github action must be activated manually. This workflow script will do the
|
||||
# following:
|
||||
#
|
||||
# - Scan issues / pull requests and make sure they have properly assigned labels:
|
||||
# - `Bug`
|
||||
# - `Feature`
|
||||
# - `Urgent`
|
||||
# - `Roadmap`
|
||||
#
|
||||
# - Workflow script will then scan each pr or issue and mark them as `Stale`
|
||||
# if they haven't had any replies in 30 days.
|
||||
#
|
||||
# - Workflow will `autoclose` pr or issues which haven't had action in `365 days`.
|
||||
# #
|
||||
|
||||
name: "🎫 Issues › Stale"
|
||||
run-name: "🎫 Issues › Stale"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
PREFIX_BUG: "Bug"
|
||||
PREFIX_DEPENDENCY: "Dependency"
|
||||
PREFIX_DOCS: "Docs"
|
||||
PREFIX_FEATURE: "Feature"
|
||||
PREFIX_GIT: "Git Action"
|
||||
PREFIX_PR: "PR"
|
||||
PREFIX_ROADMAP: "Roadmap"
|
||||
PREFIX_INTERNAL: "Internal"
|
||||
PREFIX_URGENT: "Urgent"
|
||||
|
||||
LABEL_BUG: "Type ◦ Bug"
|
||||
LABEL_DEPENDENCY: "Type ◦ Dependency"
|
||||
LABEL_DOCS: "Type ◦ Docs"
|
||||
LABEL_FEATURE: "Type ◦ Feature"
|
||||
LABEL_GIT: "Type ◦ Git Action"
|
||||
LABEL_PR: "Type ◦ Pull Request"
|
||||
LABEL_ROADMAP: "Type ◦ Roadmap"
|
||||
LABEL_INTERNAL: "Type ◦ Internal"
|
||||
LABEL_URGENT: "⚠ Urgent"
|
||||
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
LABELS_JSON: |
|
||||
[
|
||||
{ "name": "AC › Changes Made", "color": "8F1784", "description": "Requested changes have been made and are pending a re-scan" },
|
||||
{ "name": "AC › Changes Required", "color": "8F1784", "description": "Requires changes to be made to the package before being accepted" },
|
||||
{ "name": "AC › Failed", "color": "a61f2d", "description": "Autocheck failed to run through a complete cycle, requires investigation" },
|
||||
{ "name": "AC › Needs Rebase", "color": "8F1784", "description": "Due to the permissions on the requesting repo, this pull request must be rebased by the author" },
|
||||
{ "name": "AC › Passed", "color": "146b4a", "description": "Ready to be reviewed" },
|
||||
{ "name": "AC › Review Required", "color": "8F1784", "description": "PR needs to be reviewed by another person, after the requested changes have been made" },
|
||||
{ "name": "AC › Security Warning", "color": "761620", "description": "Does not conform to developer policies, or includes potentially dangerous code" },
|
||||
{ "name": "AC › Skipped Scan", "color": "8F1784", "description": "Author has skipped code scan" },
|
||||
{ "name": "Status 𐄂 Duplicate", "color": "75536b", "description": "Issue or pull request already exists" },
|
||||
{ "name": "Status 𐄂 Accepted", "color": "2e7539", "description": "This pull request has been accepted" },
|
||||
{ "name": "Status 𐄂 Autoclosed", "color": "3E0915", "description": "Originally stale and was autoclosed for no activity" },
|
||||
{ "name": "Status 𐄂 Denied", "color": "ba4058", "description": "Pull request has been denied" },
|
||||
{ "name": "Status 𐄂 Locked", "color": "550F45", "description": "Automatically locked by AdminServ for a prolonged period of inactivity" },
|
||||
{ "name": "Status 𐄂 Need Info", "color": "2E3C4C", "description": "Not enough information to resolve" },
|
||||
{ "name": "Status 𐄂 No Action", "color": "030406", "description": "Closed without any action being taken" },
|
||||
{ "name": "Status 𐄂 Pending", "color": "984b12", "description": "Pending pull request" },
|
||||
{ "name": "Status 𐄂 Released", "color": "1b6626", "description": "Issues or PR has been implemented and is now live" },
|
||||
{ "name": "Status 𐄂 Reopened", "color": "8a6f14", "description": "A previously closed PR which has been re-opened" },
|
||||
{ "name": "Status 𐄂 Review", "color": "9e1451", "description": "Currently pending review" },
|
||||
{ "name": "Status 𐄂 Stale", "color": "928282", "description": "Has not had any activity in over 30 days" },
|
||||
{ "name": "Type ◦ Bug", "color": "9a2c2c", "description": "Something isn't working" },
|
||||
{ "name": "Type ◦ Dependency", "color": "243759", "description": "Item is associated to dependency" },
|
||||
{ "name": "Type ◦ Docs", "color": "0e588d", "description": "Improvements or modifications to docs" },
|
||||
{ "name": "Type ◦ Feature", "color": "3c4e93", "description": "Feature request" },
|
||||
{ "name": "Type ◦ Git Action", "color": "030406", "description": "GitHub Action / workflow" },
|
||||
{ "name": "Type ◦ Pull Request", "color": "8F1784", "description": "Normal pull request" },
|
||||
{ "name": "Type ◦ Roadmap", "color": "8F1784", "description": "Feature or bug currently planned for implementation" },
|
||||
{ "name": "Type ◦ Internal", "color": "A51994", "description": "Assigned items are for internal developer use" },
|
||||
{ "name": "Build ◦ Desktop", "color": "c7ca4a", "description": "Specific to desktop" },
|
||||
{ "name": "Build ◦ Linux", "color": "c7ca4a", "description": "Specific to Linux" },
|
||||
{ "name": "Build ◦ MacOS", "color": "c7ca4a", "description": "Specific to MacOS" },
|
||||
{ "name": "Build ◦ Mobile", "color": "c7ca4a", "description": "Specific to mobile" },
|
||||
{ "name": "Build ◦ Web", "color": "c7ca4a", "description": "Specific to web" },
|
||||
{ "name": "Build ◦ Windows", "color": "c7ca4a", "description": "Specific to Windows" },
|
||||
{ "name": "› API", "color": "F99B50", "description": "Plugin API, CLI, browser JS API" },
|
||||
{ "name": "› Auto-type", "color": "9141E0", "description": "Auto-type functionality in desktop apps" },
|
||||
{ "name": "› Browser", "color": "9141E0", "description": "Browser plugins and passing data to <=> from app" },
|
||||
{ "name": "› Customization", "color": "E3F0FC", "description": "Customizations: plugins, themes, configs" },
|
||||
{ "name": "› Design", "color": "FA70DE", "description": "Design related queries" },
|
||||
{ "name": "› Dist", "color": "FA70DE", "description": "Installers and other forms of software distribution" },
|
||||
{ "name": "› Enterprise", "color": "11447a", "description": "Issues about collaboration, administration, and so on" },
|
||||
{ "name": "› Hardware", "color": "5a7503", "description": "YubiKey, other tokens, biometrics" },
|
||||
{ "name": "› Import/Export", "color": "F5FFCC", "description": "Import from and export to different file formats" },
|
||||
{ "name": "› Improvement", "color": "185c98", "description": "Enhance an existing feature" },
|
||||
{ "name": "› Performance", "color": "006b75", "description": "Web and desktop performance issues" },
|
||||
{ "name": "› Plugin Request", "color": "FCE9CA", "description": "Requested changes should be implemented as a plugin" },
|
||||
{ "name": "› Security", "color": "F75D39", "description": "Security issues" },
|
||||
{ "name": "› Self-Hosting", "color": "fad8c7", "description": "Self-hosting installations and configs" },
|
||||
{ "name": "› Storage", "color": "5319e7", "description": "Storage providers: Dropbox, Google, WebDAV, etc." },
|
||||
{ "name": "› Updater", "color": "1BADDE", "description": "Auto-updater issues" },
|
||||
{ "name": "› UX", "color": "1BADDE", "description": "UX and usability" },
|
||||
{ "name": "› Website", "color": "fef2c0", "description": "Website related issues" },
|
||||
{ "name": "⚠ Urgent", "color": "a8740e", "description": "Requires urgent attention" },
|
||||
{ "name": "⚠ Announcement", "color": "DB4712", "description": "Announcements" },
|
||||
{ "name": "📰 Progress Report", "color": "392297", "description": "Development updates" },
|
||||
{ "name": "📦 Release", "color": "277542", "description": "Release announcements" },
|
||||
{ "name": "✔️ Poll", "color": "972255", "description": "Community polls" },
|
||||
{ "name": "❔ Question", "color": "FFFFFF", "description": "All questions" }
|
||||
]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job [ Verify / Create Labels ]
|
||||
#
|
||||
# This job will ensure you have labels already created in your repo.
|
||||
# All labels come from the JSON table LABELS_JSON.
|
||||
# #
|
||||
|
||||
job-labels-create:
|
||||
name: >-
|
||||
🎫 Labels › Verify Existing
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✅ Start
|
||||
id: task_label_create_start
|
||||
run: |
|
||||
echo "Assigning labels and assignees"
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Checkout
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
☑️ Checkout
|
||||
id: task_label_create_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Verify Existing Labels
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Verify Existing Labels
|
||||
id: task_label_create_verify
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const labels = JSON.parse( process.env.LABELS_JSON );
|
||||
for ( const label of labels )
|
||||
{
|
||||
try
|
||||
{
|
||||
await github.rest.issues.createLabel(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: label.name,
|
||||
description: label.description || '',
|
||||
color: label.color
|
||||
});
|
||||
}
|
||||
catch ( err )
|
||||
{
|
||||
if ( err.status === 422 )
|
||||
{
|
||||
console.log( `Label '${label.name}' already exists. Skipping.` );
|
||||
}
|
||||
else
|
||||
{
|
||||
console.error( `Error creating label '${label.name}': ${err}` );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# #
|
||||
# Job [ Check Labels ]
|
||||
#
|
||||
# Runs through all submissions to check for ones that have not been properly labeled
|
||||
# - Bug
|
||||
# - Feature
|
||||
# - Urgent
|
||||
# - Roadmap
|
||||
# #
|
||||
|
||||
job-issues-nolabel:
|
||||
name: >-
|
||||
🎫 Labels › Assign Missing
|
||||
runs-on: ubuntu-latest
|
||||
needs: job-labels-create
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Check Labels ] Checkout
|
||||
# #
|
||||
|
||||
- name: "☑️ Prepare"
|
||||
id: task_issues_nolabel_prepare
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Check Labels ] Check
|
||||
# Check if repo has labels currently added to issues
|
||||
# #
|
||||
|
||||
- name: 🏷️ Checking Issues
|
||||
id: task_issues_nolabel_run
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
|
||||
/*
|
||||
Date/Time
|
||||
*/
|
||||
|
||||
const dateTimeformat = ( date ) =>
|
||||
{
|
||||
let month = date.getMonth( ) + 1;
|
||||
month = month.toString( ).padStart( 2, '0' );
|
||||
let day = date.getDate( ).toString( ).padStart( 2, '0' );
|
||||
let year = date.getFullYear( ).toString( ).padStart( 2, '0' );
|
||||
|
||||
let hours = date.getHours();
|
||||
let minutes = date.getMinutes();
|
||||
let x = hours >= 12 ? 'PM' : 'AM';
|
||||
hours = hours % 12;
|
||||
hours = hours ? hours : 12;
|
||||
minutes = minutes.toString( ).padStart( 2, '0' );
|
||||
|
||||
let mergeTime = month + '.' + day + '.' + year + ' ' + hours + ':' + minutes + ' ' + x;
|
||||
|
||||
return mergeTime;
|
||||
}
|
||||
|
||||
/*
|
||||
Change last number ( 36 = hours )
|
||||
*/
|
||||
|
||||
const expireAfterMs = 1000 * 60 * 60 * 36; // milliseconds ( 36 hours )
|
||||
const curtime = new Date( ).getTime( ); // 1711471510629
|
||||
const issues = await github.rest.issues.listForRepo( { owner: context.repo.owner, repo: context.repo.repo, state: 'open' } );
|
||||
|
||||
console.log( ` 📦── Found ${issues.data.length} open issues` );
|
||||
|
||||
for ( const issue of issues.data )
|
||||
{
|
||||
|
||||
const author = `${ issue.user.login }`;
|
||||
let date_UpdateDate = new Date( `${ issue.updated_at }` ?? `${ issue.created_at }` ); // Tue Mar 26 2024 16:40:41 GMT+0000 (Coordinated Universal Time)
|
||||
date_UpdateDate.toISOString( ) // Tue Mar 26 2024 16:40:41 GMT+0000 (Coordinated Universal Time) (string)
|
||||
|
||||
let date_UpdateHuman = dateTimeformat( date_UpdateDate ) + " UTC"; // 03.26.2024 4:40 PM UTC
|
||||
const time_UpdateMs = new Date( issue.updated_at ).getTime( ); // 1711471241000
|
||||
|
||||
//if ( curtime < time_UpdateMs + expireAfterMs ) continue;
|
||||
|
||||
/*
|
||||
Anything past this point is stale / to be closed
|
||||
*/
|
||||
|
||||
const timeline = await github.rest.issues.listEventsForTimeline( { owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number } );
|
||||
// const labelEvent = timeline.data.find( event => event.event === 'labeled' && event.label.name === 'status-stale' );
|
||||
|
||||
/*
|
||||
Get Issue Data
|
||||
*/
|
||||
|
||||
const add_labels = issue.labels.map( label => label.name );
|
||||
|
||||
let iss_title = `${ issue.title }`;
|
||||
const iss_title_lc = iss_title.toLowerCase( );
|
||||
|
||||
let iss_body = `${ issue.body }`;
|
||||
const iss_body_lc = iss_body.toLowerCase( );
|
||||
|
||||
console.log( ` └── 📁 ` + iss_title );
|
||||
console.log( ` └── 📄 Issue #${ issue.number } last updated on ${ date_UpdateHuman }` );
|
||||
console.log( ` └── 📄 ${add_labels}` );
|
||||
console.log( `\n\n` )
|
||||
|
||||
/*
|
||||
Keywords
|
||||
*/
|
||||
|
||||
const bug_words = [ "bug", "broke", "issue", "fail" ];
|
||||
const feat_words = [ "feature", "request", "add support" ];
|
||||
const urgn_words = [ "urgent", "urgency", "emergency", "important", "critical" ];
|
||||
const road_words = [ "roadmap", "road map", "planned" ];
|
||||
|
||||
/*
|
||||
Tags
|
||||
*/
|
||||
|
||||
const bug_tag = `${{ env.PREFIX_BUG }}:`;
|
||||
const bug_lbl = `${{ env.LABEL_BUG }}`;
|
||||
const feat_tag = `${{ env.PREFIX_FEATURE }}:`;
|
||||
const feat_lbl = `${{ env.LABEL_FEATURE }}`;
|
||||
const urgn_tag = `${{ env.PREFIX_URGENT }}:`;
|
||||
const urgn_lbl = `${{ env.LABEL_URGENT }}`;
|
||||
const road_tag = `${{ env.PREFIX_ROADMAP }}:`;
|
||||
const road_lbl = `${{ env.LABEL_ROADMAP }}`;
|
||||
|
||||
/*
|
||||
Label > Bugs
|
||||
*/
|
||||
|
||||
const bug_bIncWordT = bug_words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/Z99Gnq/2
|
||||
*/
|
||||
|
||||
const bug_findWordList = /^\b(?:I?\s*have\s*(?:a|an)\s*(?:issue|problem|bug))|(?:will\s*not\s*work)|(?:it\s*is\s*(?:broken|broke|stuck))|(?:found\s*(?:an?|the)\s*(?:bug|issue))|(?:can\s*I\s*fix\s*the\s*(?:bug|issue))|(?:(?:does not|doesn'?t|don'?t|won'?t|can'?t|can\s?not|will\s*not)\s*(?:work|load|function))|(?:it\s*(?:will\s?not|won'?t|can\s?not|can'?t))\s*(?:get|find)\s*the\s*(?:website|site|webpage|page)|(?:the\s*(?:window|frame)\s*is\s*(?:blank|white|empty|missing))\b$/igm;
|
||||
const bug_bFoundMatchTitle = Boolean( bug_findWordList.test( iss_title ) );
|
||||
const bug_bFoundMatchBody = Boolean( bug_findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const bug_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const bug_bFoundPRTitle = Boolean( bug_findPRTitle.test( iss_title ) );
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Bug:"
|
||||
- Check if title contains word in containsList
|
||||
*/
|
||||
|
||||
if ( iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) || bug_bIncWordT || bug_bFoundMatchTitle || bug_bFoundMatchBody )
|
||||
{
|
||||
|
||||
add_labels.push( `${ bug_lbl }` );
|
||||
|
||||
if ( author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ author }` )
|
||||
|
||||
// Rename title to contain Bug:
|
||||
if ( author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !bug_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
const title = issue.title;
|
||||
let title_new = title.replace( /^\s?bug\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?fail\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?issue\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ bug_tag } ${ title_new }`;
|
||||
}
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
/*
|
||||
Label > Features
|
||||
*/
|
||||
|
||||
const feat_bIncWordT = feat_words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/fR1Hm6/1
|
||||
*/
|
||||
|
||||
const feat_findWordList = /^(?:(?:request|include|see)\s*(?:an?|the?)\s*(?:feature|addon|addition|plugin))|(?:(?:add|see|get)\s*support\s*(?:for|with|of))|(?:can\s*we\s*get\s*(?:the|a)\s*(?:ability|feature))|(?:💡 Feature:)$/igm;
|
||||
const feat_bFoundMatchTitle = Boolean( feat_findWordList.test( iss_title ) );
|
||||
const feat_bFoundMatchBody = Boolean( feat_findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const feat_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const feat_bFoundPRTitle = Boolean( feat_findPRTitle.test( iss_title ) );
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Feature:"
|
||||
- Check if title contains word in containsList
|
||||
*/
|
||||
|
||||
if ( iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) || feat_bIncWordT || feat_bFoundMatchTitle || feat_bFoundMatchBody )
|
||||
{
|
||||
|
||||
add_labels.push( `${ feat_lbl }` );
|
||||
|
||||
if ( author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ author }` )
|
||||
|
||||
// Rename title to contain Feature:
|
||||
if ( author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !feat_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
const title = issue.title;
|
||||
let title_new = title.replace( /^\s?feature\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?request\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?add(.*?)\s?feature\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?add(.*?)\s?support\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ feat_tag } ${ title_new }`;
|
||||
}
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
/*
|
||||
Label > Urgent
|
||||
*/
|
||||
|
||||
const urgn_bIncWordT = urgn_words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/eE9tJX/2
|
||||
*/
|
||||
|
||||
const urgn_findWordList = /(?:(?:this)?is\s*a?n?\s*?(?:emergency|urgent|important|vital|acute|crucial|grave|pressing|serious|top.?priority|high.?priority))|(?:reply|respond|answer|write|address)\s*(?:immediate|quick|asap|urgent|now|fast|(?:as)?\s*(?:soon|quick|immediate|fast))(?:ly)?|(?:need\s*(?:help|support|fixed|answer|reply|response)!)|(?:emergency|critical|urgen(?:t|cy)|high.?priority)/igm;
|
||||
const urgn_bFoundMatchTitle = Boolean( urgn_findWordList.test( iss_title ) );
|
||||
const urgn_bFoundMatchBody = Boolean( urgn_findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const urgn_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const urgn_bFoundPRTitle = Boolean( urgn_findPRTitle.test( iss_title ) );
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Urgent:"
|
||||
- Check if title contains word in containsList
|
||||
*/
|
||||
|
||||
if ( iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) || urgn_bIncWordT || urgn_bFoundMatchTitle || urgn_bFoundMatchBody )
|
||||
{
|
||||
|
||||
add_labels.push( `${ urgn_lbl }` );
|
||||
|
||||
if ( author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ author }` )
|
||||
|
||||
// Rename title to contain Urgent:
|
||||
if ( author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !urgn_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
const title = issue.title;
|
||||
let title_new = title.replace( /^\s?emergency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgent\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?important\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?critical\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ urgn_tag } ${ title_new }`;
|
||||
}
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
/*
|
||||
Label > Roadmap
|
||||
*/
|
||||
|
||||
const road_bIncWordT = road_words.some( s => s.includes( iss_title_lc ) || iss_title_lc.includes( s ) );
|
||||
|
||||
/*
|
||||
Find regex based phrases
|
||||
Roadmap requires headers #Summary and #Proposal | #Objective
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/ucajBZ/1
|
||||
*/
|
||||
|
||||
const road_findWordList = /#\s*Summary[\S\s]+#\s*(?:Proposal|Objective)[^\]]+/igm;
|
||||
const road_bFoundMatchTitle = Boolean( road_findWordList.test( iss_title ) );
|
||||
const road_bFoundMatchBody = Boolean( road_findWordList.test( iss_body ) );
|
||||
|
||||
/*
|
||||
Do not change a title if the item starts with a PR: #
|
||||
|
||||
Regex:
|
||||
https://regex101.com/r/JOrqbN/1
|
||||
*/
|
||||
|
||||
const road_findPRTitle = /^PR\s?#?(?:[0-9]*:)/igm;
|
||||
const road_bFoundPRTitle = Boolean( road_findPRTitle.test( iss_title ) );
|
||||
|
||||
/*
|
||||
- Check if issue title matches the issue label "Roadmap:"
|
||||
- Check if title contains word in containsList
|
||||
*/
|
||||
|
||||
if ( iss_title_lc.startsWith( road_tag.toLowerCase( ) ) || road_bIncWordT || road_bFoundMatchTitle || road_bFoundMatchBody )
|
||||
{
|
||||
|
||||
add_labels.push( `${ road_lbl }` );
|
||||
|
||||
if ( author === `${{ env.BOT_NAME_DEPENDABOT }}` )
|
||||
core.info( `Skipping: Detected ${ author }` )
|
||||
|
||||
// Rename title to contain Roadmap:
|
||||
if ( author !== `${{ env.BOT_NAME_DEPENDABOT }}` && !road_bFoundPRTitle && !iss_title_lc.startsWith( bug_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( feat_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( urgn_tag.toLowerCase( ) ) && !iss_title_lc.startsWith( road_tag.toLowerCase( ) ) )
|
||||
{
|
||||
const title = issue.title;
|
||||
let title_new = title.replace( /^\s?emergency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgent\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?urgency\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?important\s*(.*?)\b/gi, '' );
|
||||
title_new = title.replace( /^\s?critical\s*(.*?)\b/gi, '' );
|
||||
iss_title = `${ road_tag } ${ title_new }`;
|
||||
}
|
||||
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number,
|
||||
title: `${ iss_title }`, labels: add_labels
|
||||
} );
|
||||
}
|
||||
|
||||
/*
|
||||
await github.rest.issues.update(
|
||||
{
|
||||
owner: context.repo.owner, repo: context.repo.repo, issue_number: issue.number,
|
||||
state: 'closed', state_reason: 'not planned'
|
||||
} );
|
||||
*/
|
||||
}
|
||||
|
||||
# #
|
||||
# Job [ Stale Issues ]
|
||||
# #
|
||||
|
||||
job-issues-stale:
|
||||
name: >-
|
||||
💤 Check › Stale
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- job-labels-create
|
||||
- job-issues-nolabel
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Stale Issues ] Check Condition
|
||||
# #
|
||||
|
||||
- name: "💤 Stale › Check Condition"
|
||||
uses: actions/stale@v9
|
||||
id: task_issues_stale_run
|
||||
with:
|
||||
repo-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
stale-issue-message: |
|
||||
⚠️ It looks like there hasn't been any recent updates on this issue. If you created this issue and no longer consider it
|
||||
open, then please login to github and close the issue.
|
||||
|
||||
If there is no further activity on this issue, it will be automatically closed in the next week.
|
||||
|
||||
---
|
||||
|
||||
<sub>I am a bot reaching out to you with an automated response.</sub>
|
||||
stale-issue-label: 'Status 𐄂 Stale'
|
||||
close-issue-label: 'Status 𐄂 Autoclosed'
|
||||
exempt-issue-labels: 'Status 𐄂 Accepted,Status 𐄂 Review,Status 𐄂 Pending,Type ◦ Bug,Type ◦ Dependency,Type ◦ Docs,Type ◦ Feature,Type ◦ Git Action,Type ◦ Pull Request,Type ◦ Roadmap'
|
||||
days-before-stale: 14
|
||||
days-before-close: 7
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
|
||||
# #
|
||||
# Job [ Lock Issues ]
|
||||
# #
|
||||
|
||||
job-issues-lock:
|
||||
name: >-
|
||||
🔒 Check › Inactive
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- job-labels-create
|
||||
- job-issues-nolabel
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Lock Issues ] Look for inactives
|
||||
# #
|
||||
|
||||
- name: "🔒 Lock › Inactives"
|
||||
uses: dessant/lock-threads@v5
|
||||
id: task_issues_lock_run
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
exclude-any-issue-labels: 'AC › Review Required,Status 𐄂 Accepted,Status 𐄂 Review,Status 𐄂 Pending,Type ◦ Bug,Type ◦ Dependency,Type ◦ Docs,Type ◦ Feature,Type ◦ Git Action,Type ◦ Roadmap,Type ◦ Internal'
|
||||
add-issue-labels: 'Status 𐄂 Locked'
|
||||
issue-inactive-days: '60'
|
||||
issue-lock-reason: 'resolved'
|
||||
issue-comment: >
|
||||
⚠️ This **issue** has been automatically locked since there has not been any recent activity after it was closed.
|
||||
|
||||
Please open a new issue for related bugs.
|
||||
|
||||
---
|
||||
|
||||
<sub>I am a bot reaching out to you with an automated response.</sub>
|
||||
exclude-any-pr-labels: 'AC › Review Required,Status 𐄂 Accepted,Status 𐄂 Review,Status 𐄂 Pending,Type ◦ Bug,Type ◦ Dependency,Type ◦ Docs,Type ◦ Feature,Type ◦ Git Action,Type ◦ Roadmap,Type ◦ Internal'
|
||||
add-pr-labels: 'Status 𐄂 Locked'
|
||||
pr-inactive-days: '365'
|
||||
pr-lock-reason: 'resolved'
|
||||
pr-comment: >
|
||||
⚠️ This **pull request** has been automatically locked since there has not been any recent activity after it was closed.
|
||||
|
||||
Please open a new issue for related bugs.
|
||||
|
||||
---
|
||||
|
||||
<sub>I am a bot reaching out to you with an automated response.</sub>
|
||||
183
.github/workflows/labels-clean..yml
vendored
183
.github/workflows/labels-clean..yml
vendored
@@ -1,183 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc manually activated workflow to remove issue labels
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
#
|
||||
# This Github action must be activated manually. This workflow script will do the
|
||||
# following:
|
||||
#
|
||||
# - Remove all existing labels in repository
|
||||
# #
|
||||
|
||||
name: "🎫 Labels › Remove"
|
||||
run-name: "🎫 Labels › Remove"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
BOT_NAME_1: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
LABELS_JSON: |
|
||||
[
|
||||
{ "name": "AC › Changes Made", "color": "8F1784", "description": "Requested changes have been made and are pending a re-scan" },
|
||||
{ "name": "AC › Changes Required", "color": "8F1784", "description": "Requires changes to be made to the package before being accepted" },
|
||||
{ "name": "AC › Failed", "color": "a61f2d", "description": "Autocheck failed to run through a complete cycle, requires investigation" },
|
||||
{ "name": "AC › Needs Rebase", "color": "8F1784", "description": "Due to the permissions on the requesting repo, this pull request must be rebased by the author" },
|
||||
{ "name": "AC › Passed", "color": "146b4a", "description": "Ready to be reviewed" },
|
||||
{ "name": "AC › Review Required", "color": "8F1784", "description": "PR needs to be reviewed by another person, after the requested changes have been made" },
|
||||
{ "name": "AC › Security Warning", "color": "761620", "description": "Does not conform to developer policies, or includes potentially dangerous code" },
|
||||
{ "name": "AC › Skipped Scan", "color": "8F1784", "description": "Author has skipped code scan" },
|
||||
{ "name": "Status 𐄂 Duplicate", "color": "75536b", "description": "Issue or pull request already exists" },
|
||||
{ "name": "Status 𐄂 Accepted", "color": "2e7539", "description": "This pull request has been accepted" },
|
||||
{ "name": "Status 𐄂 Autoclosed", "color": "3E0915", "description": "Originally stale and was autoclosed for no activity" },
|
||||
{ "name": "Status 𐄂 Denied", "color": "ba4058", "description": "Pull request has been denied" },
|
||||
{ "name": "Status 𐄂 Locked", "color": "550F45", "description": "Automatically locked by AdminServ for a prolonged period of inactivity" },
|
||||
{ "name": "Status 𐄂 Need Info", "color": "2E3C4C", "description": "Not enough information to resolve" },
|
||||
{ "name": "Status 𐄂 No Action", "color": "030406", "description": "Closed without any action being taken" },
|
||||
{ "name": "Status 𐄂 Pending", "color": "984b12", "description": "Pending pull request" },
|
||||
{ "name": "Status 𐄂 Released", "color": "1b6626", "description": "Issues or PR has been implemented and is now live" },
|
||||
{ "name": "Status 𐄂 Reopened", "color": "8a6f14", "description": "A previously closed PR which has been re-opened" },
|
||||
{ "name": "Status 𐄂 Review", "color": "9e1451", "description": "Currently pending review" },
|
||||
{ "name": "Status 𐄂 Stale", "color": "928282", "description": "Has not had any activity in over 30 days" },
|
||||
{ "name": "Type ◦ Bug", "color": "9a2c2c", "description": "Something isn't working" },
|
||||
{ "name": "Type ◦ Dependency", "color": "243759", "description": "Item is associated to dependency" },
|
||||
{ "name": "Type ◦ Docs", "color": "0e588d", "description": "Improvements or modifications to docs" },
|
||||
{ "name": "Type ◦ Feature", "color": "3c4e93", "description": "Feature request" },
|
||||
{ "name": "Type ◦ Git Action", "color": "030406", "description": "GitHub Action / workflow" },
|
||||
{ "name": "Type ◦ Pull Request", "color": "8F1784", "description": "Normal pull request" },
|
||||
{ "name": "Type ◦ Roadmap", "color": "8F1784", "description": "Feature or bug currently planned for implementation" },
|
||||
{ "name": "Type ◦ Internal", "color": "A51994", "description": "Assigned items are for internal developer use" },
|
||||
{ "name": "Build ◦ Desktop", "color": "c7ca4a", "description": "Specific to desktop" },
|
||||
{ "name": "Build ◦ Linux", "color": "c7ca4a", "description": "Specific to Linux" },
|
||||
{ "name": "Build ◦ MacOS", "color": "c7ca4a", "description": "Specific to MacOS" },
|
||||
{ "name": "Build ◦ Mobile", "color": "c7ca4a", "description": "Specific to mobile" },
|
||||
{ "name": "Build ◦ Web", "color": "c7ca4a", "description": "Specific to web" },
|
||||
{ "name": "Build ◦ Windows", "color": "c7ca4a", "description": "Specific to Windows" },
|
||||
{ "name": "› API", "color": "F99B50", "description": "Plugin API, CLI, browser JS API" },
|
||||
{ "name": "› Auto-type", "color": "9141E0", "description": "Auto-type functionality in desktop apps" },
|
||||
{ "name": "› Browser", "color": "9141E0", "description": "Browser plugins and passing data to <=> from app" },
|
||||
{ "name": "› Customization", "color": "E3F0FC", "description": "Customizations: plugins, themes, configs" },
|
||||
{ "name": "› Design", "color": "FA70DE", "description": "Design related queries" },
|
||||
{ "name": "› Dist", "color": "FA70DE", "description": "Installers and other forms of software distribution" },
|
||||
{ "name": "› Enterprise", "color": "11447a", "description": "Issues about collaboration, administration, and so on" },
|
||||
{ "name": "› Hardware", "color": "5a7503", "description": "YubiKey, other tokens, biometrics" },
|
||||
{ "name": "› Import/Export", "color": "F5FFCC", "description": "Import from and export to different file formats" },
|
||||
{ "name": "› Improvement", "color": "185c98", "description": "Enhance an existing feature" },
|
||||
{ "name": "› Performance", "color": "006b75", "description": "Web and desktop performance issues" },
|
||||
{ "name": "› Plugin Request", "color": "FCE9CA", "description": "Requested changes should be implemented as a plugin" },
|
||||
{ "name": "› Security", "color": "F75D39", "description": "Security issues" },
|
||||
{ "name": "› Self-Hosting", "color": "fad8c7", "description": "Self-hosting installations and configs" },
|
||||
{ "name": "› Storage", "color": "5319e7", "description": "Storage providers: Dropbox, Google, WebDAV, etc." },
|
||||
{ "name": "› Updater", "color": "1BADDE", "description": "Auto-updater issues" },
|
||||
{ "name": "› UX", "color": "1BADDE", "description": "UX and usability" },
|
||||
{ "name": "› Website", "color": "fef2c0", "description": "Website related issues" },
|
||||
{ "name": "⚠ Urgent", "color": "a8740e", "description": "Requires urgent attention" },
|
||||
{ "name": "⚠ Announcement", "color": "DB4712", "description": "Announcements" },
|
||||
{ "name": "📰 Progress Report", "color": "392297", "description": "Development updates" },
|
||||
{ "name": "📦 Release", "color": "277542", "description": "Release announcements" },
|
||||
{ "name": "✔️ Poll", "color": "972255", "description": "Community polls" },
|
||||
{ "name": "❔ Question", "color": "FFFFFF", "description": "All questions" }
|
||||
]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job › Remove Labels
|
||||
#
|
||||
# This job removes all existing labels
|
||||
# #
|
||||
|
||||
issues-labels-remove:
|
||||
name: >-
|
||||
🎫 Labels › Remove
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: 'read'
|
||||
id-token: 'write'
|
||||
issues: 'write'
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Delete Labels ] Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✅ Start
|
||||
id: task_label_remove_start
|
||||
run: |
|
||||
echo "Starting workflow"
|
||||
|
||||
# #
|
||||
# [ Delete Labels ] Checkout
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
☑️ Checkout
|
||||
id: task_label_remove_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Delete Labels ] Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Delete Existing Labels
|
||||
id: task_label_remove_run
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const targetOwner = context.repo.owner;
|
||||
const targetRepo = context.repo.repo;
|
||||
|
||||
// Fetch labels from the source repository
|
||||
const response = await github.rest.issues.listLabelsForRepo({
|
||||
owner: targetOwner,
|
||||
repo: targetRepo,
|
||||
});
|
||||
console.log("Labels fetched: ", response.data);
|
||||
|
||||
const labels = response.data;
|
||||
if (labels.length === 0) {
|
||||
console.log("No labels found in the source repository.");
|
||||
}
|
||||
|
||||
// Fetch all labels from the target repository and delete them
|
||||
const existingLabels = await github.rest.issues.listLabelsForRepo({
|
||||
owner: targetOwner,
|
||||
repo: targetRepo,
|
||||
});
|
||||
|
||||
// const labels = JSON.parse( process.env.LABELS_JSON );
|
||||
for ( const label of labels )
|
||||
{
|
||||
try
|
||||
{
|
||||
await github.rest.issues.deleteLabel(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: label.name,
|
||||
});
|
||||
}
|
||||
catch ( err )
|
||||
{
|
||||
console.error("Error: " + err);
|
||||
}
|
||||
}
|
||||
182
.github/workflows/labels-create.yml
vendored
182
.github/workflows/labels-create.yml
vendored
@@ -1,182 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc manually activated workflow to create issue labels
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
#
|
||||
# This Github action must be activated manually. This workflow script will do the
|
||||
# following:
|
||||
#
|
||||
# - Scan issues / pull requests and make sure they have properly assigned labels:
|
||||
# - `Bug`
|
||||
# - `Feature`
|
||||
# - `Urgent`
|
||||
# - `Roadmap`
|
||||
#
|
||||
# - Workflow script will then scan each pr or issue and mark them as `Stale`
|
||||
# if they haven't had any replies in 30 days.
|
||||
#
|
||||
# - Workflow will `autoclose` pr or issues which haven't had action in `365 days`.
|
||||
# #
|
||||
|
||||
name: "🎫 Labels › Create"
|
||||
run-name: "🎫 Labels › Create"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
BOT_NAME_1: AdminServ
|
||||
BOT_NAME_2: AdminServX
|
||||
BOT_NAME_3: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
LABELS_JSON: |
|
||||
[
|
||||
{ "name": "AC › Changes Made", "color": "8F1784", "description": "Requested changes have been made and are pending a re-scan" },
|
||||
{ "name": "AC › Changes Required", "color": "8F1784", "description": "Requires changes to be made to the package before being accepted" },
|
||||
{ "name": "AC › Failed", "color": "a61f2d", "description": "Autocheck failed to run through a complete cycle, requires investigation" },
|
||||
{ "name": "AC › Needs Rebase", "color": "8F1784", "description": "Due to the permissions on the requesting repo, this pull request must be rebased by the author" },
|
||||
{ "name": "AC › Passed", "color": "146b4a", "description": "Ready to be reviewed" },
|
||||
{ "name": "AC › Review Required", "color": "8F1784", "description": "PR needs to be reviewed by another person, after the requested changes have been made" },
|
||||
{ "name": "AC › Security Warning", "color": "761620", "description": "Does not conform to developer policies, or includes potentially dangerous code" },
|
||||
{ "name": "AC › Skipped Scan", "color": "8F1784", "description": "Author has skipped code scan" },
|
||||
{ "name": "Status 𐄂 Duplicate", "color": "75536b", "description": "Issue or pull request already exists" },
|
||||
{ "name": "Status 𐄂 Accepted", "color": "2e7539", "description": "This pull request has been accepted" },
|
||||
{ "name": "Status 𐄂 Autoclosed", "color": "3E0915", "description": "Originally stale and was autoclosed for no activity" },
|
||||
{ "name": "Status 𐄂 Denied", "color": "ba4058", "description": "Pull request has been denied" },
|
||||
{ "name": "Status 𐄂 Locked", "color": "550F45", "description": "Automatically locked by AdminServ for a prolonged period of inactivity" },
|
||||
{ "name": "Status 𐄂 Need Info", "color": "2E3C4C", "description": "Not enough information to resolve" },
|
||||
{ "name": "Status 𐄂 No Action", "color": "030406", "description": "Closed without any action being taken" },
|
||||
{ "name": "Status 𐄂 Pending", "color": "984b12", "description": "Pending pull request" },
|
||||
{ "name": "Status 𐄂 Released", "color": "1b6626", "description": "Issues or PR has been implemented and is now live" },
|
||||
{ "name": "Status 𐄂 Reopened", "color": "8a6f14", "description": "A previously closed PR which has been re-opened" },
|
||||
{ "name": "Status 𐄂 Review", "color": "9e1451", "description": "Currently pending review" },
|
||||
{ "name": "Status 𐄂 Stale", "color": "928282", "description": "Has not had any activity in over 30 days" },
|
||||
{ "name": "Type ◦ Bug", "color": "9a2c2c", "description": "Something isn't working" },
|
||||
{ "name": "Type ◦ Dependency", "color": "243759", "description": "Item is associated to dependency" },
|
||||
{ "name": "Type ◦ Docs", "color": "0e588d", "description": "Improvements or modifications to docs" },
|
||||
{ "name": "Type ◦ Feature", "color": "3c4e93", "description": "Feature request" },
|
||||
{ "name": "Type ◦ Git Action", "color": "030406", "description": "GitHub Action / workflow" },
|
||||
{ "name": "Type ◦ Pull Request", "color": "8F1784", "description": "Normal pull request" },
|
||||
{ "name": "Type ◦ Roadmap", "color": "8F1784", "description": "Feature or bug currently planned for implementation" },
|
||||
{ "name": "Type ◦ Internal", "color": "A51994", "description": "Assigned items are for internal developer use" },
|
||||
{ "name": "Build ◦ Desktop", "color": "c7ca4a", "description": "Specific to desktop" },
|
||||
{ "name": "Build ◦ Linux", "color": "c7ca4a", "description": "Specific to Linux" },
|
||||
{ "name": "Build ◦ MacOS", "color": "c7ca4a", "description": "Specific to MacOS" },
|
||||
{ "name": "Build ◦ Mobile", "color": "c7ca4a", "description": "Specific to mobile" },
|
||||
{ "name": "Build ◦ Web", "color": "c7ca4a", "description": "Specific to web" },
|
||||
{ "name": "Build ◦ Windows", "color": "c7ca4a", "description": "Specific to Windows" },
|
||||
{ "name": "› API", "color": "F99B50", "description": "Plugin API, CLI, browser JS API" },
|
||||
{ "name": "› Auto-type", "color": "9141E0", "description": "Auto-type functionality in desktop apps" },
|
||||
{ "name": "› Browser", "color": "9141E0", "description": "Browser plugins and passing data to <=> from app" },
|
||||
{ "name": "› Customization", "color": "E3F0FC", "description": "Customizations: plugins, themes, configs" },
|
||||
{ "name": "› Design", "color": "FA70DE", "description": "Design related queries" },
|
||||
{ "name": "› Dist", "color": "FA70DE", "description": "Installers and other forms of software distribution" },
|
||||
{ "name": "› Enterprise", "color": "11447a", "description": "Issues about collaboration, administration, and so on" },
|
||||
{ "name": "› Hardware", "color": "5a7503", "description": "YubiKey, other tokens, biometrics" },
|
||||
{ "name": "› Import/Export", "color": "F5FFCC", "description": "Import from and export to different file formats" },
|
||||
{ "name": "› Improvement", "color": "185c98", "description": "Enhance an existing feature" },
|
||||
{ "name": "› Performance", "color": "006b75", "description": "Web and desktop performance issues" },
|
||||
{ "name": "› Plugin Request", "color": "FCE9CA", "description": "Requested changes should be implemented as a plugin" },
|
||||
{ "name": "› Security", "color": "F75D39", "description": "Security issues" },
|
||||
{ "name": "› Self-Hosting", "color": "fad8c7", "description": "Self-hosting installations and configs" },
|
||||
{ "name": "› Storage", "color": "5319e7", "description": "Storage providers: Dropbox, Google, WebDAV, etc." },
|
||||
{ "name": "› Updater", "color": "1BADDE", "description": "Auto-updater issues" },
|
||||
{ "name": "› UX", "color": "1BADDE", "description": "UX and usability" },
|
||||
{ "name": "› Website", "color": "fef2c0", "description": "Website related issues" },
|
||||
{ "name": "⚠ Urgent", "color": "a8740e", "description": "Requires urgent attention" },
|
||||
{ "name": "⚠ Announcement", "color": "DB4712", "description": "Announcements" },
|
||||
{ "name": "📰 Progress Report", "color": "392297", "description": "Development updates" },
|
||||
{ "name": "📦 Release", "color": "277542", "description": "Release announcements" },
|
||||
{ "name": "✔️ Poll", "color": "972255", "description": "Community polls" },
|
||||
{ "name": "❔ Question", "color": "FFFFFF", "description": "All questions" }
|
||||
]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
# #
|
||||
|
||||
jobs:
|
||||
|
||||
# #
|
||||
# Job [ Verify / Create Labels ]
|
||||
#
|
||||
# This job will ensure you have labels already created in your repo.
|
||||
# All labels come from the JSON table LABELS_JSON.
|
||||
# #
|
||||
|
||||
issues-labels-create:
|
||||
name: >-
|
||||
🎫 Labels › Create
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: 'read'
|
||||
id-token: 'write'
|
||||
issues: 'write'
|
||||
steps:
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Start
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
✅ Start
|
||||
id: task_label_create_start
|
||||
run: |
|
||||
echo "Assigning labels and assignees"
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Checkout
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
☑️ Checkout
|
||||
id: task_label_create_checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
# #
|
||||
# [ Create Labels ] Verify Existing Labels
|
||||
# #
|
||||
|
||||
- name: >-
|
||||
🏷️ Verify Existing Labels
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ADMINSERV_TOKEN_CL }}
|
||||
script: |
|
||||
const labels = JSON.parse( process.env.LABELS_JSON );
|
||||
for ( const label of labels )
|
||||
{
|
||||
try
|
||||
{
|
||||
await github.rest.issues.createLabel(
|
||||
{
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
name: label.name,
|
||||
description: label.description || '',
|
||||
color: label.color
|
||||
});
|
||||
}
|
||||
catch ( err )
|
||||
{
|
||||
if ( err.status === 422 )
|
||||
{
|
||||
console.log( `Label '${label.name}' already exists. Skipping.` );
|
||||
}
|
||||
else
|
||||
{
|
||||
console.error( `Error creating label '${label.name}': ${err}` );
|
||||
}
|
||||
}
|
||||
}
|
||||
175
.github/workflows/ping-developer.yml
vendored
175
.github/workflows/ping-developer.yml
vendored
@@ -1,175 +0,0 @@
|
||||
# #
|
||||
# @type github workflow
|
||||
# @desc pings the developer
|
||||
# @author Aetherinox
|
||||
# @url https://github.com/Aetherinox
|
||||
# #
|
||||
|
||||
name: "⚙️ Ping › Developer"
|
||||
run-name: "⚙️ Ping › Developer"
|
||||
|
||||
# #
|
||||
# triggers
|
||||
# #
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
# #
|
||||
# environment variables
|
||||
# #
|
||||
|
||||
env:
|
||||
BOT_NAME_1: AdminServ
|
||||
BOT_NAME_2: AdminServX
|
||||
BOT_NAME_3: EuropaServ
|
||||
BOT_NAME_DEPENDABOT: dependabot[bot]
|
||||
|
||||
# #
|
||||
# jobs
|
||||
#
|
||||
# env not available for job.if
|
||||
# #
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
if: |
|
||||
contains(github.event.comment.body, '/ping')
|
||||
steps:
|
||||
|
||||
# #
|
||||
# Job > Complete > Get publish timestamp
|
||||
# #
|
||||
|
||||
- name: "🕛 Get Timestamp"
|
||||
id: task_complete_timestamp_get
|
||||
run: |
|
||||
echo "NOW=$(date +'%m-%d-%Y %H:%M:%S')" >> $GITHUB_ENV
|
||||
|
||||
# #
|
||||
# Add Label to accepted PR
|
||||
#
|
||||
# port 465
|
||||
# server_port: 465
|
||||
# secure: true
|
||||
# ignore_cert: false
|
||||
#
|
||||
# port 587
|
||||
# server_port: 587
|
||||
# secure: false
|
||||
# #
|
||||
|
||||
- name: Send mail
|
||||
uses: dawidd6/action-send-mail@v4
|
||||
with:
|
||||
server_address: ${{secrets.EMAIL_SMTP}}
|
||||
server_port: 465
|
||||
secure: true
|
||||
username: ${{secrets.EMAIL_FROM}}
|
||||
password: ${{secrets.EMAIL_KEY}}
|
||||
subject: "Github: Ping notification from ${{ github.repository }}"
|
||||
to: ${{secrets.EMAIL_TO}}
|
||||
from: ${{secrets.EMAIL_FROM}}
|
||||
html_body: |
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Title</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background: url('https://images.unsplash.com/photo-1541422348463-9bc715520974?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8ZGFyayUyMG1vdW50YWlufGVufDB8fDB8fHww');
|
||||
font-size:9pt;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.background-overlay {
|
||||
background-color: #1111119f;
|
||||
}
|
||||
.background-header {
|
||||
background: url('https://process.fs.teachablecdn.com/ADNupMnWyR7kCWRvm76Laz/resize=width:705/https://cdn.filestackcontent.com/MipxnobQRRS5h7raz9aM');
|
||||
background-size: cover;
|
||||
background-size: 100%;
|
||||
background-color:#1b1b1b;
|
||||
padding:5px;
|
||||
height:100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="background-overlay">
|
||||
<center>
|
||||
<div class="background-header">
|
||||
<a href="https://github.com/${{ github.repository }}"><img style="height:80px;padding-top:10px;" src="https://cdn0.iconfinder.com/data/icons/shift-logotypes/32/Github-512.png"></a>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<div style="font-size:9pt;padding: 20px;color:#FFF;">
|
||||
<h3><span style="font-size:9pt;color:#cc6613;">[Github]</span> <span style="font-size:9pt;color:#FFF;">Dear ${{github.repository_owner}},</span></h3>
|
||||
<p style="font-size:9pt;color:#FFF;"><br />You have received a ping notification from <a href="https://github.com/${{ github.repository }}">${{ github.repository }}</a> by <a href="https://github.com/${{ github.event.comment.user.login }}">${{ github.event.comment.user.login }}</a>.</p>
|
||||
<br>
|
||||
<br>
|
||||
<center>
|
||||
<table cellspacing="0" cellpadding="0" width="40%" class="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td
|
||||
style="font-size:9pt;background-color:#8a2138;color:#FFF;padding:6px;padding-left:10px;"><b>Repository</b></td>
|
||||
<td style="font-size:9pt;padding-left:5px;color:#b3b3b3;background-color:#1b1b1b;padding-left:10px;">${{ github.repository }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td
|
||||
style="font-size:9pt;background-color:#8a2138;color:#FFF;padding:6px;padding-left:10px;"><b>Date</b></td>
|
||||
<td style="font-size:9pt;padding-left:5px;color:#b3b3b3;background-color:#0f0f0f;padding-left:10px;">${{ env.NOW }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td
|
||||
style="font-size:9pt;background-color:#8a2138;color:#FFF;padding:6px;padding-left:10px;"><b>Commenter</b></td>
|
||||
<td style="font-size:9pt;padding-left:5px;color:#b3b3b3;background-color:#1b1b1b;padding-left:10px;">${{ github.event.comment.user.login }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td
|
||||
style="font-size:9pt;background-color:#8a2138;color:#FFF;padding:6px;padding-left:10px;"><b>Issue #</b></td>
|
||||
<td style="font-size:9pt;padding-left:5px;color:#b3b3b3;background-color:#0f0f0f;padding-left:10px;">${{ github.event.issue.number }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td
|
||||
style="font-size:9pt;background-color:#8a2138;color:#FFF;padding:6px;padding-left:10px;"><b>Action</b></td>
|
||||
<td style="font-size:9pt;padding-left:5px;color:#b3b3b3;background-color:#1b1b1b;padding-left:10px;">Notification</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
<br><br>
|
||||
|
||||
<center>
|
||||
<div style="font-family:Consolas;">
|
||||
|
||||
<textarea readonly=true style="font-size:9pt;width:60%;background-color:#363636;color:#FFF;padding:15px;border:1px solid #5a5a5a;" id="w3review" name="w3review" rows="20" cols="100">
|
||||
${{ github.event.comment.body }}
|
||||
</textarea>
|
||||
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<p> </p>
|
||||
<p style="color:#FFF;"><br /> ~ Github
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<br /><br />
|
||||
|
||||
<div style="background-color:#1b1b1b;padding:5px;line-height:70px;height:70px;text-align:center;">
|
||||
<span style="color:#FFF;font-size:8pt;">Copyright © 2024 - Betelgeuse</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
ignore_cert: true
|
||||
convert_markdown: true
|
||||
priority: normal
|
||||
Reference in New Issue
Block a user