|
10 | 10 | # - name: my-step |
11 | 11 | # run: echo "Hello World!" |
12 | 12 | # Add a note |
13 | | -env: |
14 | | - # NUMBERS: '1, 2, 3, 4, 5, 6, 7, 8, 9, 10' |
15 | | - PROJECT_DEV_IDs: '562, 586, 591, 645, 681, 683, 723, 728, 732, 907' |
16 | | - PROJECT_PROD_IDs: '513, 535, 576, 598, 705, 730, 749, 758' |
| 13 | +# env: |
| 14 | +# # NUMBERS: '1, 2, 3, 4, 5, 6, 7, 8, 9, 10' |
| 15 | +# PROJECT_DEV_IDs: '562, 586, 591, 645, 681, 683, 723, 728, 732, 907' |
| 16 | +# PROJECT_PROD_IDs: '513, 535, 576, 598, 705, 730, 749, 758' |
17 | 17 | # PROJECT_DEV_IDs: |
18 | 18 | # - 562 # RHEL Automation - main |
19 | 19 | # - 586 # RHEL 8 STIG - dev - development |
|
39 | 39 | runs-on: ubuntu-latest |
40 | 40 | strategy: |
41 | 41 | matrix: |
42 | | - PROJECT_DEV_IDs: [562, 586, 591, 645, 681, 683, 723, 728, 732, 907] |
43 | | - PROJECT_PROD_IDs: [513, 535, 576, 598, 705, 730, 749, 758] |
| 42 | + items: [item1, item2, item3, item4] |
44 | 43 | steps: |
45 | 44 | - name: Display items |
46 | | - run: echo 'Item: ${{ matrix.PROJECT_DEV_IDs }}' |
| 45 | + run: echo "Item: ${{ matrix.items }}" |
| 46 | + |
47 | 47 |
|
48 | | -# Something new |
49 | | - # uses: actions/checkout@v4 |
50 | | - # uses: ricky-defaults/sync_ansible_project@feature/action-test |
51 | | - # with: |
52 | | - # items: ${{ env.PROJECT_DEV_IDs }} |
53 | | - # command: 'echo "Count $ITEM"' |
0 commit comments