File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
rust/ql/lib/codeql/rust/dataflow/internal Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Sync Main Tags
2+
3+ on :
4+ pull_request :
5+ types :
6+ - closed
7+ branches :
8+ - main
9+
10+ jobs :
11+ sync-main-tags :
12+ name : Sync Main Tags
13+ runs-on : ubuntu-latest
14+ if : github.repository == 'microsoft/codeql' && github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'auto/sync-main-pr'
15+ permissions :
16+ contents : write
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v3
20+ with :
21+ fetch-depth : 0
22+ - name : Push Tags
23+ run : |
24+ git fetch upstream --tags --force
25+ git push --force origin --tags
26+ env :
27+ GH_TOKEN : ${{ secrets.WORKFLOW_TOKEN }}
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ final class DataFlowCall extends TDataFlowCall {
9595
9696 //** TODO JB1: Move to subclass, monkey patching for #153 */
9797 DataFlowCallable getARuntimeTarget ( ) { none ( ) }
98- Node :: ArgumentNode getAnArgumentNode ( ) { none ( ) }
98+ ArgumentNode getAnArgumentNode ( ) { none ( ) }
9999 int totalorder ( ) { none ( ) }
100100 //** TODO JB1: end stubs for #153 */
101101}
You can’t perform that action at this time.
0 commit comments