├── .github
└── workflows
│ └── get-vitrine.yml
└── README.md
/.github/workflows/get-vitrine.yml:
--------------------------------------------------------------------------------
1 | on:
2 | push:
3 | schedule:
4 | - cron: "0 * * * *"
5 |
6 | jobs:
7 | external_info:
8 | runs-on: ubuntu-latest
9 | name: Get external info
10 |
11 | steps:
12 | - name: Checkout
13 | uses: actions/checkout@v2
14 |
15 | - name: Get all projects create during the Challenge Oracle ONE Iniciante em Programação
16 | with:
17 | comment_tag_name: CHANNEL_PROJECTS
18 | max_post_count: 100000
19 | feed_list: "https://github-feed-generator-theta.vercel.app/api/topic/challengeonejogoforca"
20 | template: "$newline| []($url)"
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Challenge ONE | Lógica de Programação - Jogo da Forca
2 |
3 |
4 |
5 |