Save email address on the login form. Some improvements in the passwo… #359
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 workflow generates badges to display in the README file. | |
name: Badges | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
badges: | |
name: Generate badges | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeathSy/[email protected] | |
with: | |
directory: ./ | |
patterns: "**/*.php" | |
badge: ./badges/badge-php.svg | |
badge_label: PHP | |
badge_color: 777bb3 | |
- uses: DeathSy/[email protected] | |
with: | |
directory: ./resources/js/ | |
patterns: "**/*.ts|**/*.tsx|**/*.js" | |
badge: ./badges/badge-ts.svg | |
badge_label: TypeScript | |
badge_color: 3178c6 | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_dir: ./badges | |
publish_branch: badges | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
user_name: "github-actions[bot]" | |
user_email: "github-actions[bot]@users.noreply.github.com" | |
permissions: | |
contents: write |