Skip to content

Commit 55f0845

Browse files
authored
Merge pull request #65 from MPUSP/dev
fix: added missing conf option
2 parents 56a60e9 + 9884a99 commit 55f0845

File tree

8 files changed

+31
-130
lines changed

8 files changed

+31
-130
lines changed
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: Lint PR
21
on:
32
pull_request_target:
43
types:
@@ -11,10 +10,5 @@ permissions:
1110
pull-requests: read
1211

1312
jobs:
14-
main:
15-
name: Validate PR title
16-
runs-on: ubuntu-latest
17-
steps:
18-
- uses: amannn/action-semantic-pull-request@v6
19-
env:
20-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
conventional-prs:
14+
uses: MPUSP/mpusp-github-actions/.github/workflows/conventional-prs.yml@main
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on:
2+
workflow_run:
3+
workflows: ["release-please"]
4+
types:
5+
- completed
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
packages: write
11+
12+
jobs:
13+
deploy-apptainer:
14+
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
15+
uses: MPUSP/mpusp-github-actions/.github/workflows/deploy-apptainer.yml@main

.github/workflows/deploy_apptainer.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
on:
22
push:
3-
branches:
4-
- main
3+
branches: [main]
54

65
permissions:
76
contents: write
87
pull-requests: write
98
issues: write
109

11-
name: release-please
12-
1310
jobs:
1411
release-please:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: googleapis/release-please-action@v4
18-
with:
19-
token: ${{ secrets.GITHUB_TOKEN }}
20-
release-type: go # just keep a changelog, no version anywhere outside of git tags
12+
uses: MPUSP/mpusp-github-actions/.github/workflows/release-please.yml@main
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
on:
2+
pull_request:
3+
branches: [main]
4+
5+
jobs:
6+
snakemake-tests:
7+
uses: MPUSP/mpusp-github-actions/.github/workflows/snakemake-tests.yml@main
8+
with:
9+
cores: 2
10+
dryrun: false

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021, AUTHORS
3+
Copyright (c) 2026 Max Planck Unit for the Science of Pathogens
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

config/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ filter_guides:
3939
fiveprime_linker: Null
4040
threeprime_linker: Null
4141
export_as_gff: True
42+
export_as_fasta: True
4243

4344
report:
4445
show_examples: 20

0 commit comments

Comments
 (0)