Skip to content

Commit 0e441e2

Browse files
committed
SECURITY.md adicionado
1 parent 4bd5510 commit 0e441e2

7 files changed

+75
-22
lines changed

.gitattributes

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.cmake linguist-vendored
2-
.html linguist-vendored
3-
.cc linguist-vendored
1+
*.cmake linguist-vendored
2+
*.html linguist-vendored
3+
*.cc linguist-vendored

.github/workflows/05-flutter-build-devel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# - https://docs.github.com/pt/actions
44
# - https://github.com/marketplace/actions/flutter-action
55

6-
name: flutter-build
6+
name: flutter-build-devel
77

88
# Replace 'programma-exemplum-flutter' with your app name
99

.github/workflows/07-flutter-release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,10 @@ jobs:
150150
continue-on-error: false
151151

152152
steps:
153+
#### actions/checkout ____________________________________________________
154+
# _[por-Latn] Clone o repositório para esta máquina de testes [por-Latn]_
155+
- uses: actions/checkout@v2
156+
153157
- run: "echo 'TODO https://github.com/anton-yurchenko/git-release/blob/main/docs/example.md'"
154158

155159
# Download all artifacts to the current working directory

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
- This is a test
55
- Another test
66

7+
## [0.3.1] - 2020-11-02
8+
- SECURITY.md
9+
710
## [0.3.0] - 2020-11-02
811
- .github/workflows/README.md adicionado
912
- 05-flutter-build-devel.yml renomeado (era 05-flutter-build.yml)

README.md

+15-17
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,28 @@
55
[![Flutter Logo; Flutter and the related logo are trademarks of Google LLC. We are not endorsed by or affiliated with Google LLC.](readme-images/flutter-logo.png)](https://flutter.dev/)
66

77
## Entregáveis
8-
### Exemplo de GitHub Actions para aplicações Flutter
98

109
- **[.github/workflows/](.github/workflows/)**
10+
- Arquivos prontos para usar: **isso que você está procurando!**
1111
- `github.com/<usuario-ou-organizacao>/actions/`
12-
13-
Os entreǵáveis principais são os arquivos YAML em
12+
- Log de ações (ultimos 90 dias), exemplo: <https://github.com/HXL-CPLP/github-actions-example-flutter/actions>
13+
- **Contexto adicional**:
14+
- [diario-de-bordo.sh](diario-de-bordo.sh)
15+
- Anotações internas (para quem mantém o repositório)
16+
- `github.com/<usuario-ou-organizacao>/issues/1`
17+
- Issue com anotações adicionais, exemplo: [HXL-CPLP/github-actions-example-flutter#1](https://github.com/HXL-CPLP/github-actions-example-flutter/issues/1)
18+
19+
Os entregáveis principais são os arquivos YAML em
1420
[.github/workflows/](.github/workflows/) que _idealmente_ deveriam estar
1521
documentados ao ponto de ser inspirar implementações realistas.
1622

17-
**Aviso**: Este repositório também contém uma ou mais aplicações simples
18-
que permitem o mínimo para testar como as GitHub Actions estão integradas,
19-
mas não há intenção de manter dependências delas atualizadas.
20-
21-
#### Anotações adicionais
22-
23-
- **[diario-de-bordo.sh](diario-de-bordo.sh)**
24-
- `github.com/<usuario-ou-organizacao>/issues/1`
25-
26-
Questões não relacionadas ao GitHub actions, em especial anotações internas
27-
sobre como aplicação de exemplo foi obtida, estão em
28-
[diario-de-bordo.sh](diario-de-bordo.sh).
23+
<!--
24+
- Linkar o SECURITY.md
25+
- TODO: criar um CONTRIBUTING
26+
- https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors
27+
- https://github.com/github/docs/blob/main/CONTRIBUTING.md
28+
-->
2929

30-
Caso este projeto não seja uma bifurcação, o primeiro pode ter mais
31-
informações.
3230

3331
## Sobre
3432
### Contexto:

SECURITY.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
### A: `.github/workflows`: supported
6+
7+
Files in the folder [.github/workflows](.github/workflows) are explicitly
8+
welcome to receive security vulnerability alerts.
9+
10+
11+
### B: The example application files: NOT supported (but ok to receive pull requests)
12+
This project is a demonstration of GitHub Actions and contain example
13+
application that will not be actively maintained. Even automated GitHub Analysis
14+
are disabled to reduce noise.
15+
16+
> Note: if you are a software developer and want to submit code refactoring
17+
(likely to be a new example bootstrapping example) your pull request will
18+
be welcome.
19+
20+
## Reporting a Vulnerability
21+
22+
On this specific project, feel free to open a public GitHub issue, including
23+
mentioning with @ the previous developers.
24+
25+
As an alternative (for example, if you are using this in some project or know
26+
some other project using this as reference) you can try to discuss by email
27+
with some previous developers. Look by their email on GitHub profile or other
28+
places.

diario-de-bordo.sh

+21-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,24 @@
33
echo 'cat diario-de-bordo.sh'
44
exit 0
55

6-
# TODO: migrar conteúdo de README.old.md para cá
6+
# TODO: migrar conteúdo de README.old.md para cá
7+
8+
9+
10+
#### Git tags (linha de comando)________________________________________________
11+
### Commit usando outra conta do GitHub ........................................
12+
# Nota: normalmente você não usaria isso em um projeto real. Isso é usado
13+
# apenas para evitar que muitos commits fiquem associados a um humano
14+
# e espameie histórico do git.
15+
git add .
16+
GIT_COMMITTER_NAME="eticaaibot" GIT_COMMITTER_EMAIL="[email protected]" git commit --author="eticaaibot <[email protected]>" -m 'mensagem aqui'
17+
git tag v0.3.1
18+
git push origin tag v0.3.1
19+
git push
20+
21+
### Commit tradicional .........................................................
22+
git add .
23+
git commit -m 'mensagem aqui'
24+
git tag v0.3.1
25+
git push origin tag v0.3.1
26+
git push

0 commit comments

Comments
 (0)