feat: add an element for positioning children relative to the content… #21
This file contains hidden or 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: Update README.md | |
| on: | |
| push: | |
| paths: | |
| - "src/**" | |
| workflow_dispatch: | |
| jobs: | |
| update_chromatic_permalink_in_readme: | |
| name: "Update chromatic permalink in README.md" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Exposes metadata as environment variable | |
| uses: varunsridharan/action-repository-meta@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get Short SHA | |
| run: echo "SHORT_SHA=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV | |
| - name: Update chromatic permalink | |
| uses: varunsridharan/action-dynamic-readme@main | |
| with: | |
| commit_message: "docs: update chromatic permalink in README.md" | |
| committer_name: "v.voloshin" | |
| committer_email: "viktor_the_great@mail.ru" | |
| global_template_repository: "${{ github.repository_owner }}/${{ github.repository_name }}" | |
| files: | | |
| .github/readme-templates/README.md=README.md | |
| env: | |
| CHROMATIC_PERMALINK: "https://${{ env.SHORT_SHA }}--${{ vars.CHROMATIC_PROJECT_ID }}.chromatic.com" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| permissions: | |
| contents: write |