Problem: disallow same sender tx appear in the same tx after contract #786
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: Check Markdown links | |
on: | |
pull_request: | |
paths: | |
- '**.md' | |
push: | |
branches: | |
- develop | |
paths: | |
- '**.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: technote-space/[email protected] | |
id: git_diff | |
with: | |
PATTERNS: | | |
**/**.md | |
- uses: gaurav-nelson/github-action-markdown-link-check@master | |
with: | |
folder-path: "docs" | |
check-modified-files-only: "yes" | |
use-quiet-mode: "yes" | |
base-branch: "develop" | |
config-file: "mlc_config.json" | |
if: env.GIT_DIFF |