mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 04:08:02 -06:00
Small tweak for GH workflow
This commit is contained in:
parent
c762a45676
commit
c6205fa806
3 changed files with 28 additions and 8 deletions
20
.github/workflows/check_profiles.yml
vendored
20
.github/workflows/check_profiles.yml
vendored
|
@ -1,11 +1,19 @@
|
||||||
name: Check profiles
|
name: Check profiles
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- 'resources/profiles/**'
|
- 'resources/profiles/**'
|
||||||
- ".github/workflows/check_profiles.yml"
|
- ".github/workflows/check_profiles.yml"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
logLevel:
|
||||||
|
description: 'Log level'
|
||||||
|
required: true
|
||||||
|
default: 'warning'
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check_translation:
|
check_translation:
|
||||||
|
|
6
.github/workflows/orca_bot.yml
vendored
6
.github/workflows/orca_bot.yml
vendored
|
@ -2,6 +2,12 @@ name: Orca bot
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: "0 0 * * *"
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
logLevel:
|
||||||
|
description: 'Log level'
|
||||||
|
required: true
|
||||||
|
default: 'warning'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
stale:
|
||||||
|
|
8
.github/workflows/publish_docs_to_wiki.yml
vendored
8
.github/workflows/publish_docs_to_wiki.yml
vendored
|
@ -8,6 +8,13 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main # This can be changed to any branch of your preference
|
- main # This can be changed to any branch of your preference
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
logLevel:
|
||||||
|
description: 'Log level'
|
||||||
|
required: true
|
||||||
|
default: 'warning'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
USER_TOKEN: ${{ secrets.GH_WIKI_PAT }} # This is the repository secret personal access token
|
USER_TOKEN: ${{ secrets.GH_WIKI_PAT }} # This is the repository secret personal access token
|
||||||
USER_NAME: ${{ vars.BOT_USER_NAME }} # Enter the username of your (bot) account
|
USER_NAME: ${{ vars.BOT_USER_NAME }} # Enter the username of your (bot) account
|
||||||
|
@ -16,7 +23,6 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish_docs_to_wiki:
|
publish_docs_to_wiki:
|
||||||
if: ${{ ! env.ACT }} # Skip if using `act`
|
|
||||||
name: Publish docs to Wiki
|
name: Publish docs to Wiki
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue