File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Application specific files
2
+ test_ * .py
3
+
4
+ # Python
5
+ * .pyc
6
+ __pycache__ /
7
+ * .pyo
8
+ * .pyd
9
+
10
+ # Common
11
+ * .md
12
+ docker-compose.yml
13
+ Dockerfile *
14
+ .env *
15
+ Makefile
16
+
17
+ # Logs
18
+ logs
19
+ * .log
20
+
21
+ # IDE's
22
+ .vscode /
23
+ .idea /
24
+
25
+ # Dependency directories
26
+ node_modules /
27
+ .venv /
28
+
29
+ # # Cache directories
30
+ .parcel-cache
31
+
32
+ # git
33
+ .git
34
+ .gitattributes
35
+ .gitignore
36
+ .github /
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ LABEL com.github.actions.name="stale-repos" \
11
11
org.opencontainers.image.description="Find stale repositories in a GitHub organization."
12
12
13
13
WORKDIR /action/workspace
14
- COPY requirements.txt stale_repos.py env.py auth .py /action/workspace/
14
+ COPY requirements.txt * .py /action/workspace/
15
15
16
16
RUN python3 -m pip install --no-cache-dir -r requirements.txt \
17
17
&& apt-get -y update \
You can’t perform that action at this time.
0 commit comments