File tree Expand file tree Collapse file tree 4 files changed +32
-5
lines changed Expand file tree Collapse file tree 4 files changed +32
-5
lines changed Original file line number Diff line number Diff line change
1
+ # This file is managed by 'repo_helper'. Don't edit it directly.
2
+ ---
3
+
4
+ name : " GitHub Releases"
5
+ on :
6
+ push :
7
+ schedule :
8
+ - cron : 0 12 * * 2,4,6
9
+
10
+ jobs :
11
+ Run :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : domdfcoding/octocheese@master
15
+ with :
16
+ pypi_name : " flake8-github-action"
17
+ env :
18
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ flake8-github-action
4
4
5
5
.. start short_desc
6
6
7
- **GitHub Action to run flake8. **
7
+ **GitHub Actions integration for flake8. **
8
8
9
9
.. end short_desc
10
10
@@ -17,7 +17,8 @@ flake8-github-action
17
17
18
18
* - Tests
19
19
- |travis | |actions_windows | |actions_macos | |codefactor | |pre_commit_ci |
20
-
20
+ * - PyPI
21
+ - |pypi-version | |supported-versions | |supported-implementations | |wheel |
21
22
* - Activity
22
23
- |commits-latest | |commits-since | |maintained |
23
24
* - Other
@@ -93,6 +94,15 @@ Installation
93
94
--------------
94
95
95
96
.. start installation
97
+
98
+ ``flake8-github-action `` can be installed from PyPI.
99
+
100
+ To install with ``pip ``:
101
+
102
+ .. code-block :: bash
103
+
104
+ $ python -m pip install flake8-github-action
105
+
96
106
.. end installation
97
107
98
108
Original file line number Diff line number Diff line change @@ -7,12 +7,11 @@ email: 'dominic@davis-foster.co.uk'
7
7
username : ' domdfcoding'
8
8
version : ' 0.0.0'
9
9
license : ' MIT'
10
- short_desc : ' GitHub Action to run flake8.'
10
+ short_desc : ' GitHub Actions integration for flake8.'
11
11
12
12
enable_conda : false
13
13
enable_tests : false
14
14
enable_docs : false
15
- on_pypi : False
16
15
17
16
python_versions :
18
17
- 3.6
Original file line number Diff line number Diff line change 13
13
from __pkginfo__ import * # pylint: disable=wildcard-import
14
14
15
15
setup (
16
- description = "GitHub Action to run flake8." ,
16
+ description = "GitHub Actions integration for flake8." ,
17
17
extras_require = extras_require ,
18
18
install_requires = install_requires ,
19
19
py_modules = [],
You can’t perform that action at this time.
0 commit comments