Compare commits

...

13 Commits
v1.0.4 ... main

Author SHA1 Message Date
dependabot[bot]
d48d89028f ---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-21 15:47:47 +00:00
1c462048b4
.mailmap : init (trying .mailmap) 2023-06-26 19:56:22 +07:00
0be189ea37
filters.sh : fix messed up 2023-06-15 09:42:24 +07:00
bf5a91c5a2
Dockerfile : trying to mitigate the issue 2023-06-15 09:36:27 +07:00
dependabot[bot]
6ea1eacfce Bump requests from 2.28.1 to 2.31.0
Bumps [requests](https://github.com/psf/requests) from 2.28.1 to 2.31.0.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](https://github.com/psf/requests/compare/v2.28.1...v2.31.0)

---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-06-01 12:14:32 +00:00
f399fa0591
Dockerfile : rollback to old GitHub Cli installation method 2022-09-03 19:23:05 +07:00
e526f85e8e
Dockerfile : another sudo removed 2022-08-14 21:20:28 +07:00
e5252e16a0
Dockerfile : remove sudo 2022-08-14 21:16:27 +07:00
62c03fd07b
Dockerfile : un-necessary is restore and install curl before GitHub Cli 2022-08-14 21:12:07 +07:00
ae87151d3b
Dockerfile : cleanup un-necessary RUN and change to install GitHub Cli via apt 2022-08-14 20:58:27 +07:00
aaccadb5e1
dependencies : Update multiple dependencies version 2022-07-16 18:15:44 +07:00
ea0db5e534
Revert "crawler : additional filtering"
This reverts commit 160c116ff1.
2022-04-28 00:18:58 +07:00
160c116ff1
crawler : additional filtering 2022-04-27 23:04:01 +07:00
4 changed files with 8 additions and 7 deletions

2
.mailmap Normal file
View File

@ -0,0 +1,2 @@
<c@3qx.nl> <zebr@m21.kylz.nl>
<c@3qx.nl> <hej@aspoblourib.1w1.one>

View File

@ -1,11 +1,10 @@
# Container image that runs your code
FROM debian
FROM python
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY filters.sh /filters.sh
RUN apt-get update && apt-get install -y wget
RUN apt-get update && apt-get install -y python3 && apt-get install -y git python3-pip
RUN wget -O gh https://github.com/cli/cli/releases/download/v2.3.0/gh_2.3.0_linux_amd64.deb
RUN apt-get update && apt-get install -y git wget curl
RUN wget -O gh https://github.com/cli/cli/releases/download/v2.30.0/gh_2.30.0_linux_amd64.deb
RUN dpkg -i gh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
RUN chmod 777 /filters.sh

View File

@ -3,7 +3,7 @@ git clone https://github.com/minoplhy/filters-maker /filters-maker
git clone https://x-access-token:$API_TOKEN_GITHUB@github.com/$INPUT_DESTINATION_UNAME/$INPUT_DESTINATION_REPO.git /repros
mkdir /reprwiki
mkdir /reprwiki/Private-build/
pip3 install -r /filters-maker/requirements.txt
pip install -r /filters-maker/requirements.txt
cd /reprwiki
python3 /repros/$INPUT_ACTION_FILE
cd /repros

View File

@ -1,2 +1,2 @@
requests==2.27.1
pytz==2021.3
requests==2.32.0
pytz==2022.1