Skip to content

Commit e2448b4

Browse files
authored
Merge pull request #63 from TrueLearnAI/patch-ci
Fix CI trigger
2 parents 8bc87a2 + b66011c commit e2448b4

File tree

7 files changed

+8
-3
lines changed

7 files changed

+8
-3
lines changed

.github/workflows/clean_deployments.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ on:
1010
# an environment which creates multiple deployments.
1111
# This action cleans up the GitHub PR when the deployments are no longer needed.
1212
workflow_run:
13-
workflows: ["Spell Check"]
13+
workflows: ["Upload Python Package"]
1414
types:
1515
- completed
1616

1717
jobs:
1818
cleanup:
19+
name: Clear deployments
1920
runs-on: ubuntu-latest
2021
permissions: write-all
2122

.github/workflows/coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ concurrency:
2323

2424
jobs:
2525
code_coverage:
26+
name: Calculate Coverage
2627
runs-on: ubuntu-latest
2728

2829
steps:

.github/workflows/python_publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
uses: ./.github/workflows/typo.yml
4141

4242
deploy_to_pypi:
43+
name: Deploy to PyPI
4344
runs-on: ubuntu-latest
4445
needs: [unit_tests, static_analysis, format_check, typo_check]
4546
if: success()

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ concurrency:
2424

2525
jobs:
2626
static_analysis:
27+
name: Run Static Analysis
2728
runs-on: ubuntu-latest
2829
steps:
2930
- name: Checkout Repo

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ concurrency:
3434

3535
jobs:
3636
unit_tests:
37+
name: Run Unit Tests
3738
strategy:
3839
matrix:
3940
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Change Log
33
----------
44
This file documents all notable changes to the project.
55

6-
- TrueLearn 1.0.0 (13-04-2023)
6+
- TrueLearn 1.0.0 (14-04-2023)
77
- Initial release!

examples/wikify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
# YOUR API KEY here.
14-
# you could register at https://wikifier.org/register.html.
14+
# you can register at: https://wikifier.org/register.html
1515
API_KEY = ""
1616

1717

0 commit comments

Comments
 (0)