# # # @type github workflow # @author Aetherinox # @url https://github.com/Aetherinox # @usage manually activated workflow to create issue labels # # @secrets secrets.SELF_TOKEN self github personal access token (fine-grained) # secrets.SELF_TOKEN_CL self github personal access token (classic) # secrets.NPM_TOKEN self npmjs access token # secrets.PYPI_API_TOKEN self Pypi API token (production site) - https://pypi.org/ # secrets.PYPI_API_TEST_TOKEN self Pypi API token (test site) - https://test.pypi.org/ # secrets.SELF_DOCKERHUB_TOKEN self Dockerhub token # secrets.CODECOV_TOKEN codecov upload token for nodejs projects # secrets.MAXMIND_GELITE_TOKEN maxmind API token # secrets.CF_ACCOUNT_ID cloudflare account id # secrets.CF_ACCOUNT_TOKEN cloudflare account token # secrets.ORG_TOKEN org github personal access token (fine-grained) # secrets.ORG_TOKEN_CL org github personal access token (classic) # secrets.ORG_DOCKERHUB_TOKEN org dockerhub secret # secrets.ORG_GITEA_TOKEN org gitea personal access token (classic) with package:write permission # secrets.BOT_GPG_KEY_ASC bot gpg private key (armored) | BEGIN PGP PRIVATE KEY BLOCK # secrets.BOT_GPG_KEY_B64 bot gpg private key (binary) converted to base64 # secrets.BOT_GPG_PASSPHRASE bot gpg private key passphrase # secrets.DISCORD_WEBHOOK_CHAN_GITHUB_RELEASES discord webhook to report release notifications from github to discord # secrets.DISCORD_WEBHOOK_CHAN_GITHUB_WORKFLOWS discord webhook to report workflow notifications from github to discord # secrets.DISCORD_WEBHOOK_CHAN_GITHUB_UPDATES discord webhook to report activity notifications from github to discord # # @local these workflows can be tested locally through the use of `act` # https://github.com/nektos/act # Extract act to folder # Add system env var with path to act.exe # Run the commands: # git pull https://github.com/username/repo # act -W .github/workflows/labels-create.yml -P ubuntu-latest=catthehacker/ubuntu:full-22.04 # act -W .github/workflows/labels-create.yml -s TOKEN_CL=XXXXXXXXXX --pull=false # # name: '🎫 Labels β€Ί Create' run-name: '🎫 Labels β€Ί Create' # # # triggers # # on: # # # Trigger > Workflow Dispatch # # workflow_dispatch: inputs: # # # Discord Bot β€Ί Name # # The discord bot name # # DISCORD_BOT_NAME: description: 'πŸ€– Bot Name' required: true default: 'Europa' type: string # # # Discord Bot β€Ί Avatar # # The discord bot avatar to show; let's use some weird picture # # DISCORD_BOT_AVATAR: description: 'πŸ€– Avatar URL' required: true default: 'https://i.imgur.com/UqwMom1.jpeg' type: string # # # Discord Bot β€Ί Author Icon URL # # A small picture shown to the top-right of each post # # DISCORD_BOT_EMBED_AUTHOR_ICON: description: 'πŸ€– Embed Author Icon' required: true default: 'https://avatars.githubusercontent.com/u/200161462' type: string # # # Discord Bot β€Ί Thumbnail URL # # A small picture shown to the top-right of each post # # DISCORD_BOT_EMBED_THUMBNAIL: description: 'πŸ€– Embed Thumbnail URL' required: true default: 'https://avatars.githubusercontent.com/u/200161462' type: string # # # environment variables # # env: DISCORD_BOT_NAME: ${{ github.event.inputs.DISCORD_BOT_NAME || 'Europa' }} DISCORD_BOT_AVATAR: ${{ github.event.inputs.DISCORD_BOT_AVATAR || 'https://i.imgur.com/UqwMom1.jpeg' }} DISCORD_BOT_EMBED_AUTHOR_ICON: ${{ github.event.inputs.DISCORD_BOT_EMBED_AUTHOR_ICON || 'https://avatars.githubusercontent.com/u/200161462' }} DISCORD_BOT_EMBED_THUMBNAIL: ${{ github.event.inputs.DISCORD_BOT_EMBED_THUMBNAIL || 'https://avatars.githubusercontent.com/u/200161462' }} ASSIGN_USER: Aetherinox BOT_NAME_1: EuropaServ BOT_NAME_2: BinaryServ BOT_NAME_DEPENDABOT: dependabot[bot] BOT_NAME_RENOVATE: renovate[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 β€Ί Lock Maintenance", "color": "FBCA04", "description": "Sync package-lock.json" }, { "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 runs-on: apollo-x64 timeout-minutes: 3 permissions: contents: 'read' id-token: 'write' issues: 'write' steps: # # # Labels β€Ί Create β€Ί Checkout # # - name: 'β˜‘οΈ Checkout' uses: actions/checkout@v4 with: fetch-depth: 0 # # # Labels β€Ί Create β€Ί Job Information # # - name: >- πŸ”„ Load Job uses: qoomon/actions--context@v4 id: 'context' # # # Labels β€Ί Create β€Ί Start # # - name: >- βœ… Start run: | echo "β€Ž" echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" echo " Starting Job ${{ steps.context.outputs.job_name }}" echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" YEAR="$(date +'%Y')" echo "YEAR=${YEAR}" >> $GITHUB_ENV NOW="$(date +'%m-%d-%Y %H:%M:%S')" # 02-25-2025 12:49:48 echo "NOW=${NOW}" >> $GITHUB_ENV NOW_SHORT="$(date +'%m-%d-%Y')" # 02-25-2025 echo "NOW_SHORT=${NOW_SHORT}" >> $GITHUB_ENV NOW_LONG="$(date +'%m-%d-%Y %H:%M')" # 02-25-2025 12:49 echo "NOW_LONG=${NOW_LONG}" >> $GITHUB_ENV NOW_DOCKER="$(date +'%Y%m%d')" # 20250225 echo "NOW_DOCKER=${NOW_DOCKER}" >> $GITHUB_ENV NOW_DOCKER_TS="$(date -u +'%FT%T.%3NZ')" # 2025-02-25T12:50:11.569Z echo "NOW_DOCKER_TS=${NOW_DOCKER_TS}" >> $GITHUB_ENV SHA1="$(git rev-parse HEAD)" # 71fad013cfce9116ec62779e4a7e627fe4c33627 echo "SHA1=${SHA1}" >> $GITHUB_ENV SHA1_GH="$(echo ${GITHUB_SHA})" # 71fad013cfce9116ec62779e4a7e627fe4c33627 echo "SHA1_GH=${SHA1_GH}" >> $GITHUB_ENV PKG_VER_1DIGIT="$(echo ${{ env.IMAGE_VERSION }} | cut -d '.' -f1-1)" # 3.22 > 3 echo "PKG_VER_1DIGIT=${PKG_VER_1DIGIT}" >> $GITHUB_ENV PKG_VER_2DIGIT="$(echo ${{ env.IMAGE_VERSION }} | cut -f2 -d ":" | cut -c1-3)" # 3.22 > 3.2 echo "PKG_VER_2DIGIT=${PKG_VER_2DIGIT}" >> $GITHUB_ENV echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" echo "β€Ž" echo "β€Ž" sudo apt -qq update sudo apt -qq install tree echo "β€Ž" echo "β€Ž" echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" echo "β€Ž" echo "β€Ž" echo " Runner .............. ${{ runner.name }}" echo " Workflow ............ ${{ github.workflow }} (#${{ github.workflow_ref }})" echo " Run Number .......... ${{ github.run_number }}" echo " Ref ................. ${{ github.ref }}" echo " Ref Name ............ ${{ github.ref_name }}" echo " Event Name .......... ${{ github.event_name }}" echo " Repo ................ ${{ github.repository }}" echo " Repo Owner .......... ${{ github.repository_owner }}" echo " Run ID .............. https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" echo " Triggered By ........ ${{ github.actor }}" echo " SHA 1 (GITHUB_SHA) .. ${GITHUB_SHA}" echo " SHA 2 (github.sha) .. ${{ github.sha }}" echo " SHA 3 (env.SHA1) .... ${SHA1}" echo " SHA 4 (env.SHA1_GH) . ${SHA1_GH}" echo " Workspace ........... ${{ github.workspace }}" echo " PWD ................. ${PWD}" echo " Job Name ............ ${{ steps.context.outputs.job_name }}" echo " Job ID .............. ${{ steps.context.outputs.job_id }}" echo " Job URL ............. ${{ steps.context.outputs.job_url }}" echo " Run ID .............. ${{ steps.context.outputs.run_id }}" echo " Run Attempt ......... ${{ steps.context.outputs.run_attempt }}" echo " Run Number .......... ${{ steps.context.outputs.run_number }}" echo " Run URL ............. ${{ steps.context.outputs.run_url }}" echo " Run Env ............. ${{ steps.context.outputs.environment }}" echo " Run Env URL ......... ${{ steps.context.outputs.environment_url }}" echo " Run Deployment ...... ${{ steps.context.outputs.deployment_id }}" echo " Run Deployment URL .. ${{ steps.context.outputs.deployment_url }}" echo " Run Deployment ...... ${{ steps.context.outputs.deployment_id }}" echo " Run Runner Name ..... ${{ steps.context.outputs.runner_name }}" echo " Run Runner ID ....... ${{ steps.context.outputs.runner_id }}" echo " Year ................ ${YEAR}" echo " Now ................. ${NOW}" echo " Now (Short) ......... ${NOW_SHORT}" echo " Now (Long) .......... ${NOW_LONG}" echo " Now (Docker) ........ ${NOW_DOCKER}" echo " Now (Docker TS) ..... ${NOW_DOCKER_TS}" echo "β€Ž" echo "β€Ž" echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" echo "β€Ž" echo "β€Ž" tree -I node_modules -I .git echo "β€Ž" echo "β€Ž" echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" echo "β€Ž" echo "β€Ž" # # # Labels β€Ί Create β€Ί Verify Existing Labels # # - name: >- 🏷️ Verify Existing Labels id: task_label_verify_existing uses: actions/github-script@v7 with: github-token: ${{ secrets.ADMINSERV_TOKEN_CL || github.token }} script: | const labels = JSON.parse( process.env.LABELS_JSON ); let result = Object.keys(labels).length; 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}` ); } } } console.log("[Success]: Added " + result + " labels to repo"); return result # # # Labels β€Ί Create β€Ί Get Weekly Commits # # - name: >- πŸ•› Get Weekly Commit List id: task_label_set_weekly_commit_list run: | echo 'WEEKLY_COMMITS<> $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) uses: tsickert/discord-webhook@v7.0.0 if: success() with: username: ${{ env.DISCORD_BOT_NAME }} avatar-url: ${{ env.DISCORD_BOT_AVATAR }} webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_GITHUB_TVAPP2_WORKfLOWS }} embed-title: "βš™οΈ ${{ github.workflow_ref }}" embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" embed-thumbnail-url: ${{ env.DISCORD_BOT_EMBED_THUMBNAIL }} embed-description: | ## 🎫 α²ΌLabels β€Ί Create α²Ό${{ job.status == 'success' && 'βœ…' || '❌' }} A **successful** workflow has been ran to generate labels for your repository. **${{ steps.task_label_verify_existing.outputs.result }}** labels have been added. - Labels: `${{ steps.task_label_verify_existing.outputs.result }} created` - Workflow: `${{ github.workflow }} (#${{github.run_number}})` - Runner: `${{ runner.name }}` - 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: "${{ github.repository_owner }}" embed-author-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" embed-author-icon-url: ${{ env.DISCORD_BOT_EMBED_AUTHOR_ICON }} # # # Cleanup β€Ί Notify Github β€Ί Failure # # - name: >- πŸ”” Send Discord Webhook Message (Failure) uses: tsickert/discord-webhook@v7.0.0 if: failure() with: username: ${{ env.DISCORD_BOT_NAME }} avatar-url: ${{ env.DISCORD_BOT_AVATAR }} webhook-url: ${{ secrets.DISCORD_WEBHOOK_CHAN_GITHUB_TVAPP2_WORKfLOWS }} embed-title: "βš™οΈ ${{ github.workflow_ref }}" embed-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" embed-thumbnail-url: ${{ env.DISCORD_BOT_EMBED_THUMBNAIL }} embed-description: | ## 🎫 α²ΌLabels β€Ί Create α²Ό${{ job.status == 'success' && 'βœ…' || '❌' }} A **failed** attempt was made to run this workflow. No new labels have been added to your repository. - Labels: `${{ steps.task_label_verify_existing.outputs.result }} created` - Workflow: `${{ github.workflow }} (#${{github.run_number}})` - Runner: `${{ runner.name }}` - 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: "${{ github.repository_owner }}" embed-author-url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" embed-author-icon-url: ${{ env.DISCORD_BOT_EMBED_AUTHOR_ICON }}