feat(moderation): only list email of user with the same family name (… #532
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
# | |
name: scalingo/buildpack | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
push: | |
name: Sync scalingo/buildpack branch with .scalingo/buildpack folder | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 | |
if: github.ref == 'refs/heads/master' | |
with: | |
commit_message: ${{ github.event.head_commit.message }} | |
enable_jekyll: true # NOTE(douglasduteil): do not add .nojekyll file | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: scalingo/buildpack | |
publish_dir: ./.scalingo/buildpack | |
user_email: "github-actions[bot]@users.noreply.github.com" | |
user_name: "github-actions[bot]" |