Add back content-visibility: auto and make image go upwards to not get cut off when on bottom of entry container #2532
Workflow file for this run
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: Auto-Approve Safe PRs | |
on: pull_request | |
permissions: {} | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save the PR number in an artifact | |
shell: bash | |
env: | |
PR_NUM: ${{ github.event.number }} | |
run: echo "$PR_NUM" > pr_num.txt | |
- name: Upload the PR number | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pr_num | |
path: ./pr_num.txt |