✏️ Fix typo in syntax for using the GitHub Action tag directly (instead of with Docker) in README #56
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: Latest Changes | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: | |
number: | |
description: PR number | |
required: true | |
jobs: | |
latest-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: tiangolo/latest-changes@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
latest_changes_header: '### Latest Changes - Latest Changes 🤷' | |
debug_logs: true | |
# - name: Secure tmate session | |
# run: curl https://github.com/tiangolo.keys > ~/.tmate_authorized_keys && echo 'set tmate-authorized-keys "~/.tmate_authorized_keys"' > ~/.xtmate.conf | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 |