PRが作成されたタイミングで指定した拡張子のファイルのExif情報を取得し、PRのコメントに記載するGitHub Actionsです。
- レポジトリの
Settings > Actions > General > Workflow permissions
の設定を「Read and write permissions」に変更してください。 - 以下のようにGitHub Actionsの設定ファイルを作成してください。
name: ExifPR
on:
pull_request:
types: [opened]
jobs:
exifpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ExifPR
uses: xryuseix/exifpr@v1.0
with:
target_ext: .png .jpeg .jpg .gif .bmp .pdf .mp4 .mp3 .wav
repository: ${{ github.repository }}
pr_number: ${{ github.event.pull_request.number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- Pull Requestを作成してください。