-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from ivellios/main
- Loading branch information
Showing
13 changed files
with
126 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,13 @@ body: | |
Dziękujemy za zainteresowanie dołączeniem do programu Wyślij.co. Wypełnij poniższe pola informacjami o swojej organizacji, żeby zgłosić ją do programu. | ||
# Podstawowe informacje | ||
- type: input | ||
id: nazwa | ||
id: name | ||
attributes: | ||
label: Nazwa Twojej organizacji | ||
validations: | ||
required: true | ||
- type: input | ||
id: www | ||
id: website | ||
attributes: | ||
label: Adres strony internetowej Twojej organizacji | ||
validations: | ||
|
@@ -63,7 +63,7 @@ body: | |
**Uwaga!** Zastrzegamy sobie prawo do zmiany tej wartości w celu zapewnienia równego traktowania wszystkich organizacji korzystających z programu Wyślij.co. | ||
- type: input | ||
id: nazwa_strony | ||
id: slug | ||
attributes: | ||
label: Nazwa Twojej strony w Wyślij.co | ||
description: Wprowadź nazwę bez polskich znaków diakrytycznych, oraz spacjami zmienionymi na `-` | ||
|
@@ -75,36 +75,73 @@ body: | |
attributes: | ||
value: | | ||
# Dane teleadresowe do dostaw | ||
Podaj dane dla dostaw przesyłek do Twojej organizacji. Powinny to być oficjalne dane teleadresowe. | ||
Pamiętaj, że przekazane tutaj informacje będą publicznie dostępne na stronie Twojej organizacji | ||
w Wyślij.co. | ||
- type: input | ||
id: ulica | ||
id: street | ||
attributes: | ||
label: Ulica i numer budynku/lokalu | ||
validations: | ||
required: true | ||
- type: input | ||
id: kod_pocztowy | ||
id: postal_code | ||
attributes: | ||
label: Kod Pocztowy | ||
description: Wprowadź kod pocztowy w formacie `00-000` | ||
placeholder: 00-000 | ||
validations: | ||
required: true | ||
- type: input | ||
id: miasto | ||
id: city | ||
attributes: | ||
label: Miasto | ||
validations: | ||
required: true | ||
- type: input | ||
id: telefon | ||
id: email | ||
attributes: | ||
label: Adres email dla firmy kurierskiej | ||
description: | | ||
Podaj oficjalny adres email, na który firma kurierska wyśle powiadomienia dotyczące przesyłki. | ||
Pamiętaj, że ten adres będzie publicznie widoczny w internecie. | ||
placeholder: [email protected] | ||
validations: | ||
required: true | ||
- type: input | ||
id: phone_number | ||
attributes: | ||
label: Telefon kontaktowy dla kuriera | ||
description: Wprowadź numer telefonu w formacie `000 000 000` | ||
description: | | ||
Wprowadź numer telefonu w formacie `000 000 000` | ||
Podaj oficjalny numer telefonu, na który firma kurierska wyśle powiadomienia dotyczące przesyłki. | ||
Pamiętaj, że ten numer będzie publicznie widoczny w internecie. | ||
placeholder: 000 000 000 | ||
validations: | ||
required: true | ||
- type: input | ||
id: package_box_code | ||
attributes: | ||
label: Kod paczkomatu | ||
description: | | ||
Podaj kod paczkomatu, w którym możesz odebrać przesyłki wysłane za pośrednictwem firmy InPost. | ||
Kod paczkomatu możesz znaleźć na stronie [Znajdź Paczkomat](https://inpost.pl/znajdz-paczkomat). | ||
placeholder: WAW01M | ||
validations: | ||
required: false | ||
- type: input | ||
id: additional_info | ||
attributes: | ||
label: Dodatkowe informacje dla dostawcy | ||
description: | | ||
Jeżeli to konieczne, podaj dodatkowe informacje do przekazania dla firmy dostawczej. | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Następne kroki | ||
Po wypełnieniu formularza, Twój wniosek zostanie zweryfikowany przez nasz zespół. W celu weryfikacji poprawności danych skontaktujemy się z Twoją organizacją poprzez oficjalne dane kontaktowe dostępne na stronie internetowej organizacji lub w rejestrze KRS. W przypadku pozytywnej weryfikacji, otrzymasz od nas informację o dalszych krokach w komentarzu do tego zgłoszenia (zakładka Issues). | ||
**Pamiętaj, że przekazane przez Ciebie dane powinny być informacjami oficjalnymi Twojej organizacji i będą dostępne publicznie w zgłoszeniu, kodzie oraz na stronach Wyślij.co.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from typing import Optional, Self | ||
from typing import Self | ||
|
||
import requests | ||
from github import Issue | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ PyYAML==6.0.2 | |
requests==2.32.3 | ||
GitPython==3.1.43 | ||
ruff==0.8.3 | ||
Jinja2==3.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Walidacja zmiany plików organizacji | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'organizations/*.yaml' | ||
pull_request: | ||
paths: | ||
- 'organizations/*.yaml' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
yaml-linting: | ||
name: Walidacja pliku organizacji | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ibiqlik/action-yamllint@v3 | ||
with: | ||
file_or_dir: organizations/*.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters