Skip to content

Commit d610d6b

Browse files
committed
chnage to trigger workflow
1 parent d12683c commit d610d6b

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
1+
# GitHub Actions configuration **EXAMPLE**,
2+
# MODIFY IT ACCORDING TO YOUR NEEDS!
3+
# Reference: https://docs.github.com/en/actions
4+
5+
16
name: Testing
27
on: [pull_request]
38
permissions:
49
contents: read
510

6-
jobs:
11+
#name: test
712

13+
#on:
14+
#push:
15+
# Avoid using all the resources/limits available by checking only
16+
# relevant branches and tags. Other branches can be checked via PRs.
17+
# branches: [main]
18+
# tags: ["v[0-9]*", "[0-9]+.[0-9]+*"] # Match tags that resemble a version
19+
#pull_request: # Run in every PR
20+
#workflow_dispatch: # Allow manually triggering the workflow
21+
#schedule:
22+
# Run roughly every 15 days at 00:00 UTC
23+
# (useful to check if updates on dependencies break the package)
24+
#- cron: "0 0 1,16 * *"
25+
26+
#concurrency:
27+
#group: >-
28+
# ${{ github.workflow }}-${{ github.ref_type }}-
29+
# ${{ github.event.pull_request.number || github.sha }}
30+
#cancel-in-progress: false
31+
32+
jobs:
833
prepare:
934
runs-on: ubuntu-latest
1035
outputs:
@@ -35,6 +60,11 @@ jobs:
3560
name: python-distribution-files
3661
path: dist/
3762
retention-days: 1
63+
#- name: Keepalive Workflow
64+
# uses: gautamkrishnar/keepalive-workflow@1.1.0
65+
# with:
66+
# time_elapsed: 44
67+
# gh_token: ${{ secrets.GITHUB_TOKEN }}
3868

3969
test:
4070
needs: prepare

0 commit comments

Comments
 (0)