Skip to content

Commit

Permalink
Merge pull request #132 from mach3-software/feature_NuMCMCCI
Browse files Browse the repository at this point in the history
Nu MCMC CI
  • Loading branch information
KSkwarczynski authored Sep 25, 2024
2 parents 4202d8a + 961148f commit 33ee368
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/CIValidations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
#fourth_test: bin/GetPostfitParamPlots -o MCMC_Test_Process.root -c Inputs/PlottingConfig.yaml
#fifth_test: bin/PlotLLH -o MCMC_Test.root -c Inputs/PlottingConfig.yaml

- name: NuMCMC Tools Validations
first_test: Apps/NuMCMCvalidations.sh
second_test: empty
third_test: empty

container:
image: ghcr.io/mach3-software/mach3:alma9latest

Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/Stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow warns and then marks issues and PRs as stale, without closing them.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests

on:
schedule:
- cron: '24 13 * * *'

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-close: false # Prevents closing issues or PRs

0 comments on commit 33ee368

Please sign in to comment.