From bf9403538feba5ef82337900a9cd6bdb1143a13a Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Sun, 4 May 2025 11:10:01 -0400 Subject: [PATCH] hide other workflows for now --- .forgejo/workflows/analyze.yml | 64 +++++++++++++++++----------------- .forgejo/workflows/publish.yml | 48 ++++++++++++------------- 2 files changed, 56 insertions(+), 56 deletions(-) diff --git a/.forgejo/workflows/analyze.yml b/.forgejo/workflows/analyze.yml index adf5000..96e70e1 100644 --- a/.forgejo/workflows/analyze.yml +++ b/.forgejo/workflows/analyze.yml @@ -1,32 +1,32 @@ -name: analyze - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - schedule: - - cron: '24 21 * * 6' - -jobs: - analyze: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - language: [ 'java' ] - permissions: - actions: read - contents: read - security-events: write - steps: - - name: checkout repository - uses: actions/checkout@v2 - - name: initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - - name: autobuild - uses: github/codeql-action/autobuild@v1 - - name: perform CodeQL analysis - uses: github/codeql-action/analyze@v1 +# name: analyze +# +# on: +# push: +# branches: [ main ] +# pull_request: +# branches: [ main ] +# schedule: +# - cron: '24 21 * * 6' +# +# jobs: +# analyze: +# runs-on: ubuntu-latest +# strategy: +# fail-fast: false +# matrix: +# language: [ 'java' ] +# permissions: +# actions: read +# contents: read +# security-events: write +# steps: +# - name: checkout repository +# uses: actions/checkout@v2 +# - name: initialize CodeQL +# uses: github/codeql-action/init@v1 +# with: +# languages: ${{ matrix.language }} +# - name: autobuild +# uses: github/codeql-action/autobuild@v1 +# - name: perform CodeQL analysis +# uses: github/codeql-action/analyze@v1 diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml index d60d6e8..3bc073e 100644 --- a/.forgejo/workflows/publish.yml +++ b/.forgejo/workflows/publish.yml @@ -1,24 +1,24 @@ -name: publish - -on: - release: - types: [created] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: checkout repository - uses: actions/checkout@v2 - - name: set up java - uses: actions/setup-java@v1 - with: - java-version: '11' - - name: build with maven - run: mvn --batch-mode --file pom.xml package - - name: upload to release - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ github.token }} - with: - args: 'bundle/target/*.ear' +# name: publish +# +# on: +# release: +# types: [created] +# +# jobs: +# build: +# runs-on: ubuntu-latest +# steps: +# - name: checkout repository +# uses: actions/checkout@v2 +# - name: set up java +# uses: actions/setup-java@v1 +# with: +# java-version: '11' +# - name: build with maven +# run: mvn --batch-mode --file pom.xml package +# - name: upload to release +# uses: skx/github-action-publish-binaries@master +# env: +# GITHUB_TOKEN: ${{ github.token }} +# with: +# args: 'bundle/target/*.ear'